@charset "utf-8";
:root {
  --color: #f07c00;
  --vh: 100vh;
}
/*字体*/
@font-face {
  font-family: "fontnum";
  src: url("../font/Akrobat-Bold.ttf") format("truetype");
}
.fontnum {
  font-family: 'fontnum', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
* {
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: calc(100vw/19.2);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: thin;
}
html ::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 5px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}
html ::-webkit-scrollbar-thumb {
  /*滚动条-滑块*/
  border-radius: 3px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #f07c00;
}
html ::-webkit-scrollbar-track {
  /*滚动条-背景*/
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  background: #ededed;
}
@media (min-width: 1901px) {
  html {
    font-size: 100px;
  }
}
@media (max-width: 1580px) {
  html {
    font-size: 66px;
  }
}
@media (max-width: 767px) {
  html {
    font-size: calc(100vw/7.5);
  }
}
body {
  min-height: 100%;
  font-family: 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background: #fff;
}
@media (max-width: 1580px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 0.28rem;
  }
}
img {
  max-width: 100%;
  border: 0;
  vertical-align: top;
}
li {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
}
a,
a:hover,
a:focus {
  text-decoration: none;
}
input,
button {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
button {
  cursor: pointer;
}
input[type="button"],
input[type="reset"],
input[type="submit"] {
  appearance: button;
  -webkit-appearance: button;
  cursor: pointer;
}
textarea {
  resize: none;
  overflow: auto;
}
input,
button,
textarea,
select {
  border: 0;
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
  color: inherit;
  background: transparent;
}
select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  white-space: nowrap;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}
table {
  border-collapse: collapse;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.clear {
  zoom: 1;
}
.clear:after {
  content: '';
  display: block;
  clear: both;
}
.container {
  margin: 0 auto;
  width: 90%;
  max-width: 1600px;
}
@media (max-width: 1260px) {
  .container {
    width: 90%;
  }
}
.font16 {
  font-size: 16px;
}
@media (max-width: 1580px) {
  .font16 {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .font16 {
    font-size: 0.28rem;
  }
}
.public-scrollbar {
  scrollbar-width: thin;
}
.public-scrollbar ::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 5px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}
.public-scrollbar ::-webkit-scrollbar-thumb {
  /*滚动条-滑块*/
  border-radius: 3px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #f07c00;
}
.public-scrollbar ::-webkit-scrollbar-track {
  /*滚动条-背景*/
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  background: #ededed;
}
.public-img {
  display: block;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.public-img::before {
  content: "";
  display: block;
  position: relative;
  z-index: 0;
  padding-top: 100%;
}
.public-img > video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.public-img > img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.public-content {
  color: #666;
  line-height: 1.8;
  word-break: break-all;
}
.public-content a {
  color: #666;
}
.public-content table {
  max-width: 100%;
}
.public-content table td,
.public-content table th {
  padding: 10px 15px;
  border: 1px solid #dbf1ed;
}
.public-content li {
  margin-left: 15px;
  list-style: disc;
}
.public-content ol {
  margin-left: 15px;
  list-style: decimal;
}
.public-content img {
  border-radius: 0.2rem;
}
.public-content iframe {
  width: 100%;
  height: 5rem;
}
.public-content img,
.public-content video {
  max-width: 100%;
  height: auto !important;
}
#hi-upgrade {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: #fff;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
}
#hi-upgrade .hi-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -177px 0 0 -450px;
  width: 900px;
}
#hi-upgrade .hi-wrap .hi-title {
  font-size: 30px;
  line-height: 40px;
  color: #333;
}
#hi-upgrade .hi-wrap .hi-close {
  margin: 10px 0;
  display: inline-block;
  cursor: pointer;
  font-size: 18px;
  color: #f07c00;
}
#hi-upgrade .hi-wrap .hi-close:hover {
  text-decoration: underline;
}
#hi-upgrade .hi-wrap .hi-text1 {
  color: #666;
}
#hi-upgrade .hi-wrap .hi-text1 span {
  color: #f07c00;
}
#hi-upgrade .hi-wrap .hi-text2 {
  position: relative;
  margin: 60px 0;
  color: #333;
}
#hi-upgrade .hi-wrap .hi-text2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  width: 100%;
  border-top: 1px solid #ddd;
}
#hi-upgrade .hi-wrap .hi-text2 span {
  position: relative;
  z-index: 5;
  padding: 0 30px;
  background: #fff;
}
#hi-upgrade .hi-wrap .hi-list {
  overflow: hidden;
}
#hi-upgrade .hi-wrap .hi-list li {
  display: inline-block;
  width: 16%;
}
#hi-upgrade .hi-wrap .hi-list li div {
  margin: 0 auto 5px;
  width: 50px;
  height: 50px;
}
#hi-upgrade .hi-wrap .hi-list li a {
  color: #666;
}
#hi-upgrade .hi-wrap .hi-list li a:hover {
  color: #f07c00;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico1 {
  background: url(../images/hi-llq-1.jpg) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico2 {
  background: url(../images/hi-llq-2.jpg) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico3 {
  background: url(../images/hi-llq-3.jpg) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico4 {
  background: url(../images/hi-llq-4.jpg) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico5 {
  background: url(../images/hi-llq-5.jpg) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico6 {
  background: url(../images/hi-llq-6.jpg) no-repeat center / 100%;
}
/* 占位标签，设置导航样式 */
#c-placeholder {
  height: 0.8rem;
}
@media (max-width: 991px) {
  #c-placeholder {
    height: 1.2rem;
  }
}
/*顶部*/
#c-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  width: 100%;
  line-height: 1.1rem;
  text-align: center;
  color: #fff;
  transition: 0.4s;
}
#c-header.c-ie {
  top: 0 !important;
}
@media (max-width: 991px) {
  #c-header {
    line-height: 1.2rem;
  }
}
#c-header a {
  color: #fff;
  transition: 0.4s;
}
#c-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  #c-header .container {
    height: 1.2rem;
  }
}
#c-header .c-left-box {
  display: flex;
  align-content: center;
}
#c-header .c-right-box {
  display: flex;
  align-items: center;
}
#c-header.c-head-move {
  top: -1.1rem;
}
@media (max-width: 991px) {
  #c-header.c-head-move {
    top: -1.2rem;
  }
}
#c-header.c-style2 {
  color: #333;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
#c-header.c-style2 a {
  color: #333;
}
/*顶部logo*/
#c-header .c-logo {
  display: flex;
  align-items: center;
}
#c-header .c-logo .c-img-box {
  display: flex;
  align-items: center;
}
#c-header .c-logo .c-img-box img {
  width: 1.51rem;
  height: 0.41rem;
}
#c-header .c-logo .c-img-box img:nth-child(2) {
  display: none;
}
#c-header.c-style2 .c-logo .c-img-box img:nth-child(1) {
  display: none;
}
#c-header.c-style2 .c-logo .c-img-box img:nth-child(2) {
  display: inline-block;
}
/*顶部pc导航*/
#c-header .c-nav {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  #c-header .c-nav {
    display: none;
  }
}
#c-header .c-nav > li {
  position: relative;
  padding-right: 0.65rem;
}
#c-header .c-nav > li:last-child {
  padding-right: 0;
}
#c-header .c-nav > li > .c-title-box {
  display: flex;
  align-items: center;
  cursor: pointer;
}
#c-header .c-nav li a {
  position: relative;
  display: block;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
#c-header .c-nav ul {
  padding: 0.3rem 0;
  position: absolute;
  top: 99%;
  left: 0;
  display: none;
  min-width: 1.8rem;
  line-height: 0.5rem;
  background: #fff;
}
#c-header .c-nav ul li {
  text-align: left;
}
#c-header .c-nav ul li a {
  line-height: 0.4rem;
  padding: 0 0.2rem 0 0.5rem;
  color: #333;
}
#c-header .c-nav ul li a::before {
  top: 0.07rem;
  width: 2px !important;
  left: 0.2rem !important;
  height: 0.26rem;
  background: #f07c00;
  opacity: 0;
  transition: all 0.5s;
}
#c-header .c-nav ul li:hover a {
  color: #f07c00;
}
#c-header .c-nav ul li:hover a::before {
  opacity: 1;
}
#c-header.c-style2 .c-nav li.on > .c-title-box > a,
#c-header .c-nav li:hover > .c-title-box > a,
#c-header .c-nav li.on > a,
#c-header .c-nav li:hover > a {
  color: #f07c00;
}
#c-header.c-style2 .c-nav li.on > .c-title-box > a:before,
#c-header .c-nav li:hover > .c-title-box > a:before,
#c-header .c-nav li.on > a:before,
#c-header .c-nav li:hover > a:before {
  left: 0;
  width: 100%;
}
#c-header.c-style2 .c-nav li.on > .c-title-box svg,
#c-header .c-nav li:hover > .c-title-box svg {
  color: #f07c00;
}
#c-header.c-style3 .c-nav li.on > .c-title-box > a,
#c-header .c-nav li:hover > .c-title-box > a,
#c-header .c-nav li.on > a,
#c-header .c-nav li:hover > a {
  color: #f07c00;
}
#c-header.c-style3 .c-nav li.on > .c-title-box > a:before,
#c-header .c-nav li:hover > .c-title-box > a:before,
#c-header .c-nav li.on > a:before,
#c-header .c-nav li:hover > a:before {
  left: 0;
  width: 100%;
}
#c-header.c-style3 .c-nav li.on > .c-title-box svg,
#c-header .c-nav li:hover > .c-title-box svg {
  color: #f07c00;
}
/*顶部移动端导航*/
#c-header .c-nav2 {
  position: absolute;
  top: 1.2rem;
  left: 0;
  width: 100%;
  height: 0;
  line-height: 1rem;
  color: #333;
  background: #fff;
  overflow-y: auto;
  transition: 0.4s;
  text-align: left;
}
#c-header .c-nav2 > li:last-child {
  border-bottom: 1px solid #f1f1f1;
}
#c-header .c-nav2 li {
  padding: 0 0.5rem;
  border-top: 1px solid #f1f1f1;
}
@media (max-width: 767px) {
  #c-header .c-nav2 li {
    padding: 0 0.5rem;
  }
}
#c-header .c-nav2 li .c-title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#c-header .c-nav2 li .c-title-box img,
#c-header .c-nav2 li .c-title-box svg {
  width: 0.3rem;
  height: 0.3rem;
  transition: all 0.4s;
}
#c-header .c-nav2 li .c-title-box.on img,
#c-header .c-nav2 li .c-title-box.on svg {
  transform: rotate(90deg);
}
#c-header .c-nav2 li a {
  color: #333;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
#c-header .c-nav2 li a:hover,
#c-header .c-nav2 li.on > a {
  color: #f07c00;
}
#c-header .c-nav2 li ul {
  display: none;
}
.c-open #c-header .c-nav2 {
  height: calc(100vh - 1.2rem);
}
.c-open #c-header {
  color: #333;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.c-open #c-header .c-logo .c-img-box img:nth-child(1) {
  display: none;
}
.c-open #c-header .c-logo .c-img-box img:nth-child(2) {
  display: block;
}
.c-open #c-header i {
  background-color: #333 !important;
}
#c-header.navheader a {
  color: #333 !important;
}
#c-header.navheader .c-logo .c-img-box img:nth-child(1) {
  display: none;
}
#c-header.navheader .c-logo .c-img-box img:nth-child(2) {
  display: block;
}
#c-header.navheader i {
  background-color: #333 !important;
}
/*顶部导航开关*/
#c-header .c-switch {
  position: relative;
  display: none;
  width: 0.48rem;
  height: 0.4rem;
  cursor: pointer;
}
@media (max-width: 991px) {
  #c-header .c-switch {
    display: block;
  }
}
#c-header .c-switch i {
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  background: #fff;
  transition: all 0.4s;
}
#c-header .c-switch i:nth-child(1) {
  top: 0;
}
#c-header .c-switch i:nth-child(3) {
  bottom: 0;
}
#c-header .c-switch i:nth-child(2) {
  top: 50%;
  margin-top: -1px;
}
#c-header.c-style2 .c-switch i {
  background: #333;
}
#c-header.c-style3 .c-switch i {
  background: #333;
}
body.c-open #c-header .c-switch i:nth-child(2) {
  opacity: 0;
}
body.c-open #c-header .c-switch i:nth-child(1) {
  top: 50%;
  margin-top: -1px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
body.c-open #c-header .c-switch i:nth-child(3) {
  bottom: 50%;
  margin-bottom: -1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* 顶部功能区 */
#c-header .c-gn {
  margin-left: 2rem;
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 1260px) {
  #c-header .c-gn {
    margin-left: 0.4rem;
    margin-right: 0.4rem;
  }
}
#c-header .c-search {
  display: flex;
  align-items: center;
  margin-right: 0.15rem;
  position: relative;
  height: 1.1rem;
  padding: 0 0.3rem;
}
#c-header .c-search .ycn1 {
  display: flex;
  align-items: center;
}
#c-header .c-search .ycn1 svg {
  width: 0.2rem;
  height: auto;
}
@media (max-width: 991px) {
  #c-header .c-search .ycn1 svg {
    width: 0.4rem;
  }
}
#c-header .c-search .ycn1 svg path {
  fill: #222;
  opacity: 1;
  stroke: none;
  transition: all 0.5s;
}
.textflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.textflow2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.textflow3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.textflow4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.textflow7 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
}
.textflow10 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
}
.font80 {
  font-size: 0.8rem;
}
.font72 {
  font-size: 0.72rem;
}
.font60 {
  font-size: 0.6rem;
}
.font58 {
  font-size: 0.58rem;
}
.font56 {
  font-size: 0.56rem;
}
.font54 {
  font-size: 0.54rem;
}
.font52 {
  font-size: 0.52rem;
}
.font50 {
  font-size: 0.5rem;
}
.font48 {
  font-size: 0.48rem;
}
@media (max-width: 1580px) {
  .font48 {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .font48 {
    font-size: 0.48rem;
  }
}
.font46 {
  font-size: 0.46rem;
}
@media (max-width: 1580px) {
  .font46 {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .font46 {
    font-size: 0.46rem;
  }
}
.font44 {
  font-size: 0.44rem;
}
@media (max-width: 1580px) {
  .font44 {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .font44 {
    font-size: 0.44rem;
  }
}
.font42 {
  font-size: 0.42rem;
}
@media (max-width: 1580px) {
  .font42 {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .font42 {
    font-size: 0.42rem;
  }
}
.font40 {
  font-size: 0.4rem;
}
@media (max-width: 1580px) {
  .font40 {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .font40 {
    font-size: 0.4rem;
  }
}
.font38 {
  font-size: 0.38rem;
}
@media (max-width: 1580px) {
  .font38 {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .font38 {
    font-size: 0.4rem;
  }
}
.font36 {
  font-size: 0.36rem;
}
@media (max-width: 1580px) {
  .font36 {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .font36 {
    font-size: 0.4rem;
  }
}
.font34 {
  font-size: 34px;
}
@media (max-width: 1580px) {
  .font34 {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .font34 {
    font-size: 0.4rem;
  }
}
.font32 {
  font-size: 32px;
}
@media (max-width: 1580px) {
  .font32 {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .font32 {
    font-size: 0.4rem;
  }
}
.font30 {
  font-size: 30px;
}
@media (max-width: 1580px) {
  .font30 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .font30 {
    font-size: 0.4rem;
  }
}
.font28 {
  font-size: 28px;
}
@media (max-width: 1580px) {
  .font28 {
    font-size: 26px;
  }
}
@media (max-width: 991px) {
  .font28 {
    font-size: 0.3rem;
  }
}
.font26 {
  font-size: 26px;
}
@media (max-width: 1580px) {
  .font26 {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .font26 {
    font-size: 0.3rem;
  }
}
.font24 {
  font-size: 24px;
}
@media (max-width: 1580px) {
  .font24 {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .font24 {
    font-size: 0.3rem;
  }
}
.font22 {
  font-size: 22px;
}
@media (max-width: 1580px) {
  .font22 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .font22 {
    font-size: 0.3rem;
  }
}
.font20 {
  font-size: 20px;
}
@media (max-width: 1580px) {
  .font20 {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .font20 {
    font-size: 0.3rem;
  }
}
.font18 {
  font-size: 18px;
}
@media (max-width: 1580px) {
  .font18 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .font18 {
    font-size: 0.28rem;
  }
}
.font16 {
  font-size: 16px;
}
@media (max-width: 1580px) {
  .font16 {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .font16 {
    font-size: 0.28rem;
  }
}
.font14 {
  font-size: 14px;
}
@media (max-width: 1580px) {
  .font14 {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .font14 {
    font-size: 0.24rem;
  }
}
.font12 {
  font-size: 12px;
}
.font-b {
  font-weight: bold;
}
/**********************************00-01 首页**********************************/
@keyframes bannerscale {
  0% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.publicbanner2page {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
}
.publicbanner2page .swiper-pagination-bullet {
  background-color: #Fff;
  opacity: 0.4;
}
.publicbanner2page .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #f07c00;
}
.public-banner2 {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.public-banner2 .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
}
.public-banner2 .swiper-wrapper .swiper-slide .img {
  position: relative;
  width: 100%;
  height: 100%;
}
.public-banner2 .swiper-wrapper .swiper-slide .img video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .public-banner2 .swiper-wrapper .swiper-slide .img video {
    display: none;
  }
}
.public-banner2 .swiper-wrapper .swiper-slide .img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: bannerscale 20s infinite linear;
}
@media (max-width: 991px) {
  .public-banner2 .swiper-wrapper .swiper-slide .img img.pc-img {
    display: none;
  }
}
.public-banner2 .swiper-wrapper .swiper-slide .img img.mb-img {
  display: none;
}
@media (max-width: 991px) {
  .public-banner2 .swiper-wrapper .swiper-slide .img img.mb-img {
    display: block;
  }
}
.public-banner2 .swiper-wrapper .swiper-slide .img img.yinyingxia {
  height: auto;
  top: initial;
  bottom: 0;
}
.public-banner2 .swiper-wrapper .swiper-slide .img img.yinyingshang {
  height: auto;
}
.public-banner2 .swiper-wrapper .swiper-slide.ani-slide .textcontainer .cn1 {
  opacity: 1;
  transform: translateY(0);
}
.public-banner2 .swiper-wrapper .swiper-slide.ani-slide .textcontainer .cn2 {
  opacity: 1;
  transform: translateY(0);
}
.public-banner2 .swiper-wrapper .swiper-slide.ani-slide .textcontainer .cn15 {
  opacity: 1;
  transform: translateY(0);
}
.public-banner2 .containerpublic {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 1rem;
  z-index: 3;
}
@media (max-width: 991px) {
  .public-banner2 .containerpublic {
    top: 1.2rem;
  }
}
.public-banner2 .textcontainer {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
}
@media (max-width: 991px) {
  .public-banner2 .textcontainer {
    left: 15%;
    top: 15%;
    transform: initial;
    z-index: 4;
    width: 70%;
  }
}
.public-banner2 .textcontainer .cn1 {
  text-align: left;
  color: #ffffff;
  opacity: 0;
  transition: all 0.5s;
  line-height: 1.16666667em;
  max-width: 100%;
  transform: translateY(0.6rem);
}
.public-banner2 .textcontainer .cn2 {
  margin-top: 0.35rem;
  text-align: left;
  line-height: 1.45454545em;
  opacity: 0;
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.5s 0.25s;
  transform: translateY(0.6rem);
}
.public-banner2 .textcontainer .cn2 span {
  color: #f07c00;
}
.public-banner2 .textcontainer .cn15 {
  justify-content: flex-start;
  margin-top: 0.6rem;
  opacity: 0;
  transition: all 0.5s 0.5s;
  transform: translateY(0.6rem);
}
.public-banner2 .textcontainer.blackcolor .cn1 {
  color: #000;
}
.public-banner2 .textcontainer.blackcolor .cn2 {
  color: #000;
}
.public-banner2 .textcontainer.blackcolor .cn15 .public-btn0 {
  border: 1px solid #000;
  color: #000;
}
.public-banner2 .textcontainer.blackcolor .cn15 .public-btn0:hover {
  border: 1px solid #f07c00;
  color: #Fff;
}
.public-banner2 .textcontainer.whitecolor .cn1 {
  color: #fff;
}
.public-banner2 .textcontainer.whitecolor .cn2 {
  color: #Fff;
}
.public-banner2 .container2 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 5;
}
.public-banner2 .publicbanner2page {
  text-align: left;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 1.7rem;
  z-index: 5;
}
@media (max-width: 991px) {
  .public-banner2 .publicbanner2page {
    text-align: center;
  }
}
.public-banner2 .publicbanner2page .swiper-pagination-bullet {
  width: 0.16rem;
  margin-right: 0.14rem;
  height: 0.16rem;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.public-banner2 .publicbanner2page .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #f07c00;
  border: 2px solid #f07c00;
}
.public-btn2 {
  display: flex;
  justify-content: center;
}
.public-btn2.public-btn2boreder .public-btn0 {
  background-color: transparent;
}
.public-btn2.public-btn2boreder .public-btn0::before {
  border: 1px solid #fff;
  opacity: 1;
}
.public-btn2.public-btn2boreder .public-btn0:hover {
  background-color: #fff;
}
.public-btn2 .public-btn0 {
  background-color: #f07c00;
  display: flex;
  line-height: 0.5rem;
  min-width: 1.4rem;
  border-radius: 0.25rem;
  align-items: center;
  color: #ffffff;
  transition: all 0.5s;
  padding: 0 0.27rem;
  justify-content: space-between;
  position: relative;
}
.public-btn2 .public-btn0::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: 0.25rem;
  transition: all 0.5s;
  border: 1px solid #f07c00;
}
@media (max-width: 991px) {
  .public-btn2 .public-btn0 {
    line-height: 0.76rem;
    border-radius: 0.38rem;
  }
}
.public-btn2 .public-btn0 .zpcn1 {
  color: #Fff;
  transition: all 0.5s;
}
.public-btn2 .public-btn0 .zpcn2 {
  margin-left: 0.27rem;
  display: flex;
  align-items: center;
  transition: all 0.5s;
}
.public-btn2 .public-btn0 .zpcn2 svg path {
  fill: #Fff;
  opacity: 1;
  stroke: none;
  transition: all 0.5s;
}
.public-btn2 .public-btn0:hover {
  background-color: transparent;
}
.public-btn2 .public-btn0:hover::before {
  opacity: 1;
}
.public-btn2 .public-btn0:hover .zpcn1 {
  color: #f07c00;
}
.public-btn2 .public-btn0:hover .zpcn2 svg path {
  fill: #f07c00;
}
.index-box1 {
  padding-top: 1rem;
}
.index-box1.on .box .box2 {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 991px) {
  .index-box1 {
    padding-top: 1.2rem;
  }
}
.index-box1 .box {
  max-width: 1920px;
  width: 100%;
  margin: 2.56rem auto 0;
  position: relative;
}
@media (max-width: 991px) {
  .index-box1 .box {
    width: 90%;
    margin: 0.6rem auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.index-box1 .box .cn1 {
  width: 100%;
}
.index-box1 .box .cn1::before {
  padding-top: 10.41666667%;
}
@media (max-width: 991px) {
  .index-box1 .box .cn1 {
    display: none;
  }
}
.index-box1 .box .cn1 video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
  width: 100%;
}
.index-box1 .box .cn1 img {
  display: none;
  width: 100%;
}
.index-box1 .box .box2 {
  position: absolute;
  left: 15%;
  top: -60%;
  opacity: 0;
  transform: translateY(-1rem);
  z-index: 3;
  transition: all 2s;
}
@media (max-width: 991px) {
  .index-box1 .box .box2 {
    margin-bottom: 0.3rem;
    max-width: 33%;
    position: relative;
    left: 0 !important;
    top: 0 !important;
  }
}
@media (max-width: 767px) {
  .index-box1 .box .box2 {
    width: 50%;
    max-width: 50%;
  }
}
.index-box1 .box .box2:nth-child(3) {
  left: 40%;
  top: -40%;
}
.index-box1 .box .box2:nth-child(4) {
  left: 65%;
  top: -50%;
}
.index-box1 .box .box2 .cn2 {
  color: #999999;
  line-height: 1.5em;
  margin-bottom: 0.15rem;
}
.index-box1 .box .box2 .cn3 {
  line-height: 1em;
  display: flex;
}
.index-box1 .box .box2 .cn3 span {
  color: #f07c00;
}
.public-title-box .indexcn1 {
  text-align: center;
  color: #f07c00;
  line-height: 1.5em;
  font-weight: bold;
}
.public-title-box .indexcn2 {
  margin-top: 0.4rem;
  text-align: center;
  line-height: 1.25em;
}
@media (max-width: 991px) {
  .public-title-box .indexcn2 {
    display: none;
  }
}
.public-title-box .indexcn2 span {
  color: rgba(34, 34, 34, 0.3);
}
.public-title-box .indexcn2 span.on {
  color: #222;
}
.public-title-box .indexcn3 {
  margin-top: 0.4rem;
  text-align: center;
  line-height: 1.25em;
  display: none;
}
@media (max-width: 991px) {
  .public-title-box .indexcn3 {
    display: block;
  }
}
.public-title-box .indexcn3 br {
  display: none;
}
.public-title-box .indexcn3 span {
  color: rgba(34, 34, 34, 0.3);
}
.public-title-box .indexcn3 span.on {
  color: #222;
}
.public-title-box .cn100 {
  margin-top: 0.45rem;
}
.index-box2 {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.index-box2::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  background-color: #f5f5f5;
}
@media (max-width: 991px) {
  .index-box2 {
    margin-top: 1.2rem;
  }
}
.index-box2 .left {
  width: 50%;
  position: relative;
  transform: translateY(0.6rem);
}
@media (max-width: 991px) {
  .index-box2 .left {
    width: 100%;
    transform: translateY(0) !important;
  }
}
.index-box2 .left .public-title-box .indexcn1 {
  color: rgba(255, 255, 255, 0.7);
}
.index-box2 .left .public-title-box .indexcn2 {
  color: #fff;
}
.index-box2 .left .public-title-box .indexcn2 span {
  color: #Fff !important;
}
@media (max-width: 1260px) {
  .index-box2 .left .public-title-box .indexcn2 br {
    display: none;
  }
}
.index-box2 .left .public-title-box .indexcn3 {
  color: #fff;
  text-align: left;
}
.index-box2 .left .public-title-box .indexcn3 span {
  color: #Fff !important;
}
@media (max-width: 1260px) {
  .index-box2 .left .public-title-box .indexcn3 br {
    display: none;
  }
}
.index-box2 .left .public-title-box .cn100 {
  justify-content: flex-start;
}
.index-box2 .left .public-title-box .cn100 .public-btn0 {
  background-color: #Fff;
}
.index-box2 .left .public-title-box .cn100 .public-btn0::before {
  border: 2px solid #a5aebb;
}
.index-box2 .left .public-title-box .cn100 .public-btn0 .zpcn1 {
  color: #a5aebb;
}
.index-box2 .left .public-title-box .cn100 .public-btn0 .zpcn2 svg path {
  fill: #a5aebb;
}
.index-box2 .left .public-title-box .cn100 .public-btn0:hover {
  background-color: transparent;
}
.index-box2 .left .public-title-box .cn100 .public-btn0:hover::before {
  border: 2px solid #fff;
}
.index-box2 .left .public-title-box .cn100 .public-btn0:hover .zpcn1 {
  color: #Fff;
}
.index-box2 .left .public-title-box .cn100 .public-btn0:hover .zpcn2 svg path {
  fill: #fff;
}
.index-box2 .right {
  position: relative;
  transform: translateY(-0.6rem);
  width: 50%;
}
@media (max-width: 991px) {
  .index-box2 .right {
    width: 100%;
    transform: translateY(0) !important;
  }
}
.index-box2 .right .public-title-box .indexcn2 {
  color: #fff;
}
.index-box2 .right .public-title-box .indexcn2 span {
  color: #Fff !important;
}
.index-box2 .right .public-title-box .indexcn3 {
  color: #fff;
  text-align: left;
}
.index-box2 .right .public-title-box .indexcn3 br {
  display: block;
}
.index-box2 .right .public-title-box .indexcn3 span {
  color: #Fff !important;
}
.index-box2 .right .public-title-box .cn100 {
  justify-content: flex-start;
}
.index-box2 .right .indexbox2swiper {
  position: relative;
  overflow: hidden;
}
.index-box2 .indexbox2swiper2 {
  position: absolute;
  overflow: hidden;
  padding-top: 0.3rem;
  left: 1rem;
  width: calc(100% - 2rem);
  bottom: 1rem;
  z-index: 3;
}
.index-box2 .indexbox2swiper2 em {
  content: "";
  position: absolute;
  left: 0;
  top: 0.33rem;
  width: calc(75%);
  height: 0.04rem;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 2;
}
.index-box2 .indexbox2swiper2 .swiper-slide {
  cursor: pointer;
}
.index-box2 .indexbox2swiper2 .swiper-slide.swiper-slide-thumb-active .dian::after {
  opacity: 1;
}
.index-box2 .indexbox2swiper2 .swiper-slide .dian {
  position: relative;
  width: 0.1rem;
  height: 0.1rem;
  z-index: 3;
}
.index-box2 .indexbox2swiper2 .swiper-slide .dian::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.1rem;
  height: 0.1rem;
  background-color: #Fff;
  border-radius: 50%;
  z-index: 2;
}
.index-box2 .indexbox2swiper2 .swiper-slide .dian::after {
  opacity: 0;
  z-index: 1;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.26rem;
  height: 0.26rem;
  background-color: #f07c00;
  border-radius: 50%;
}
.index-box2 .indexbox2swiper2 .swiper-slide .cn1 {
  margin-top: 0.15rem;
  color: #Fff;
  line-height: 0.3rem;
}
.index-box2 .indexbox2swiper2 .swiper-slide .cn1 span {
  position: relative;
}
.index-box2 .bgimg {
  width: 100%;
}
.index-box2 .bgimg::before {
  padding-top: 100%;
}
.index-box2 .public-title-box {
  z-index: 3;
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: calc(100% - 2rem);
}
@media (max-width: 991px) {
  .index-box2 .public-title-box {
    top: 1.2rem;
    left: 5%;
    width: 90%;
  }
}
.index-box2 .public-title-box .indexcn1 {
  text-align: left;
}
.index-box2 .public-title-box .indexcn2 {
  text-align: left;
}
.index-box3 {
  background-color: #f5f5f5;
  padding: 1.4rem 0 0;
  position: relative;
}
.index-box3 .bgimg {
  position: absolute;
  right: 0;
  bottom: 0;
}
.index-box3 .bgimg img {
  width: 6.38rem;
}
.index-box3 .container {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.index-box3 .container .left {
  position: sticky;
  left: 0;
  top: 1.2rem;
  width: 50%;
  min-height: calc(100vh - 1.2rem);
}
@media (max-width: 991px) {
  .index-box3 .container .left {
    min-height: auto;
    position: relative;
    width: 100%;
    top: 0;
  }
}
.index-box3 .container .left .public-title-box {
  position: relative;
  z-index: 10;
}
.index-box3 .container .left .public-title-box .indexcn1 {
  text-align: left;
}
.index-box3 .container .left .public-title-box .indexcn2 {
  text-align: left;
}
.index-box3 .container .left .public-title-box .indexcn3 {
  text-align: left;
}
.index-box3 .container .left .public-title-box .indexcn3 br {
  display: block;
}
.index-box3 .container .left .public-title-box .cn100 {
  justify-content: flex-start;
}
.index-box3 .container .left .img {
  margin: -1rem 0 0 auto;
}
@media (max-width: 991px) {
  .index-box3 .container .left .img {
    margin: 0 0 0 auto;
    display: none;
  }
}
.index-box3 .container .left .img::before {
  padding-top: 75%;
}
.index-box3 .container .left .img img {
  opacity: 0;
}
.index-box3 .container .left .img img.on {
  opacity: 1;
}
.index-box3 .container .right {
  width: 50%;
  padding-bottom: 5rem;
}
@media (max-width: 991px) {
  .index-box3 .container .right {
    margin-top: 1rem;
    width: 100%;
    padding-bottom: 0;
  }
}
.index-box3 .container .right .box1 {
  width: 100%;
  margin-bottom: 30px;
  border: 1px solid #eee;
  border-radius: 0.1rem;
  position: sticky;
  left: 0;
  background-color: #fff;
  top: 0;
  transition: all 0.5s;
}
@media (max-width: 991px) {
  .index-box3 .container .right .box1 {
    transform: scale(1) !important;
  }
}
.index-box3 .container .right .box1 .box2 .cn3 {
  color: #666;
}
.index-box3 .container .right .box1 .box2 .cn4 {
  color: #666;
}
.index-box3 .container .right .box1 .box2 .cn5 .public-btn2 .public-btn0::before {
  border: 1px solid #666;
}
@media (max-width: 991px) {
  .index-box3 .container .right .box1 .box2 .cn5 .public-btn2 .public-btn0::before {
    border-radius: 0.8rem;
  }
}
.index-box3 .container .right .box1 .box2 .cn5 .public-btn2 .public-btn0 .zpcn1 {
  color: #666;
}
.index-box3 .container .right .box1 .box2 .cn5 .public-btn2 .public-btn0 .zpcn2 svg path {
  fill: #666;
}
.index-box3 .container .right .box1 .box2 .cn5 .public-btn2 .public-btn0:hover {
  background-color: #f07c00;
}
.index-box3 .container .right .box1 .box2 .cn5 .public-btn2 .public-btn0:hover::before {
  border: 1px solid #f07c00;
}
.index-box3 .container .right .box1 .box2 .cn5 .public-btn2 .public-btn0:hover .zpcn1 {
  color: #Fff;
}
.index-box3 .container .right .box1 .box2 .cn5 .public-btn2 .public-btn0:hover .zpcn2 svg path {
  fill: #Fff;
}
@media (min-width: 992px) {
  .index-box3 .container .right .box1.on {
    background-color: #dedddc;
  }
  .index-box3 .container .right .box1.on .cn3 {
    color: #fff;
  }
  .index-box3 .container .right .box1.on .cn4 {
    color: #fff;
  }
  .index-box3 .container .right .box1.on .cn5 .public-btn2 .public-btn0::before {
    border: 1px solid #fff;
  }
  .index-box3 .container .right .box1.on .cn5 .public-btn2 .public-btn0 .zpcn1 {
    color: #fff;
  }
  .index-box3 .container .right .box1.on .cn5 .public-btn2 .public-btn0 .zpcn2 svg path {
    fill: #fff;
  }
  .index-box3 .container .right .box1.on .cn5 .public-btn2 .public-btn0:hover {
    background-color: #Fff;
  }
  .index-box3 .container .right .box1.on .cn5 .public-btn2 .public-btn0:hover::before {
    border: 1px solid #fff;
  }
  .index-box3 .container .right .box1.on .cn5 .public-btn2 .public-btn0:hover .zpcn1 {
    color: #f07c00;
  }
  .index-box3 .container .right .box1.on .cn5 .public-btn2 .public-btn0:hover .zpcn2 svg path {
    fill: #f07c00;
  }
  .index-box3 .container .right .box1.on .bgimg {
    opacity: 1;
  }
}
.index-box3 .container .right .box1::before {
  padding-top: 39.47368421%;
}
@media (max-width: 991px) {
  .index-box3 .container .right .box1::before {
    display: none;
  }
}
@media (max-width: 767px) {
  .index-box3 .container .right .box1::before {
    padding-top: 60%;
  }
}
.index-box3 .container .right .box1 .box2 {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  padding: 0.5rem;
  overflow: auto;
}
@media (max-width: 991px) {
  .index-box3 .container .right .box1 .box2 {
    position: relative;
    left: 0;
    top: 0;
    transform: initial;
    padding: 0.5rem 0.2rem;
  }
}
.index-box3 .container .right .box1 .bgimg {
  position: absolute;
  opacity: 0;
}
.index-box3 .container .right .box1 .bgimg2 {
  display: none;
}
@media (max-width: 991px) {
  .index-box3 .container .right .box1 .bgimg2 {
    position: relative;
    height: auto;
    display: block;
  }
}
.index-box3 .container .right .box1 .cn3 {
  line-height: 1.3125em;
  color: #fff;
  z-index: 3;
}
.index-box3 .container .right .box1 .cn4 {
  margin-top: 0.125rem;
  color: rgba(255, 255, 255, 0.5);
  z-index: 4;
  line-height: 1.44444444em;
}
.index-box3 .container .right .box1 .cn5 {
  display: flex;
  flex-wrap: wrap;
}
.index-box3 .container .right .box1 .cn5 .cn100 {
  margin-right: 0.2rem;
  margin-top: 0.5rem;
}
@media (max-width: 991px) {
  .index-box3 .container .right .box1 .cn5 .public-btn2 .public-btn0 {
    padding: 0 0.15rem;
  }
}
@media (max-width: 991px) {
  .index-box3 .container .right .box1 .cn5 .public-btn2 .public-btn0 .zpcn2 {
    margin-left: 0.15rem;
  }
}
.index-box4 {
  overflow: hidden;
  position: relative;
  padding-top: 1rem;
  padding-bottom: 1.2rem;
  background-color: #f5f5f5;
}
.index-box4 .bgimg {
  max-width: 1920px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
}
.index-box4 .bgimg img {
  width: 100%;
}
.index-box4 .public-title-box {
  max-width: 90%;
  margin: 0 auto;
}
.index-box4 .indexbox4swiper {
  max-width: 1920px;
  margin: 0 auto;
  padding: 1.5rem 0;
  position: relative;
}
@media (max-width: 1580px) {
  .index-box4 .indexbox4swiper {
    padding: 1.7rem 0;
  }
}
@media (max-width: 991px) {
  .index-box4 .indexbox4swiper {
    padding: 0.6rem 0;
  }
}
.index-box4 .indexbox4swiper .swiper-slide {
  width: 1.2rem;
}
.index-box4 .indexbox4swiper .swiper-slide .img {
  width: 1.2rem;
  background-color: #Fff;
  border-radius: 50%;
}
.index-box5 {
  padding: 1rem 0 1.4rem;
}
@media (max-width: 991px) {
  .index-box5 {
    padding: 1.2rem 0;
  }
}
.index-box5 .container .public-title-box .indexcn2 {
  margin-top: 0.2rem;
}
.index-box5 .container .box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.index-box5 .container .box .box2 {
  border-radius: 0.1rem;
  overflow: hidden;
  margin-top: 0.6rem;
  width: 31.25%;
  background-color: #f5f5f5;
}
@media (max-width: 991px) {
  .index-box5 .container .box .box2 {
    width: calc(50% - 0.15rem);
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .index-box5 .container .box .box2 {
    width: 100%;
  }
}
.index-box5 .container .box .box2:hover .img img {
  transform: scale(1.05);
}
.index-box5 .container .box .box2:hover .cn1 span {
  border: 1px solid #f07c00;
  background-color: #f07c00;
  color: #fff;
}
.index-box5 .container .box .box3 {
  margin-top: 0.6rem;
  border-radius: 0.1rem;
  overflow: hidden;
  width: 31.25%;
  background-color: #f5f5f5;
  padding: 0.3rem 0.4rem;
}
@media (max-width: 991px) {
  .index-box5 .container .box .box3 {
    margin-top: 0.3rem;
    width: 100%;
  }
}
.index-box5 .container .box .box3 .box4 {
  border-top: 1px solid #e6ecf2;
  display: block;
  padding: 0.2rem 0;
}
.index-box5 .container .box .box3 .box4 .cn2 {
  margin: 0 0 0.2rem;
}
.index-box5 .container .box .box3 .box4:hover .cn2 {
  color: #f07c00;
}
.index-box5 .container .box .img {
  border-radius: 0.1rem 0.1rem 0 0;
}
.index-box5 .container .box .img::before {
  padding-top: 60%;
}
.index-box5 .container .box .cn1 {
  display: flex;
}
.index-box5 .container .box .cn1 span {
  text-align: center;
  min-width: 1rem;
  line-height: 0.36rem;
  border-radius: 0.18rem;
  border: 1px solid #e0e0e0;
  color: #999999;
  transition: all 0.5s;
  padding: 0 0.2rem;
}
.index-box5 .container .box .cn2 {
  color: #222222;
  line-height: 1.33333333em;
  height: 2.66666667em;
  margin: 0.2rem 0 0.4rem;
  transition: all 0.5s;
}
.index-box5 .container .box .cn3 {
  color: #959ca6;
  display: flex;
  align-items: center;
}
.index-box5 .container .box .cn3 img {
  margin-right: 0.1rem;
}
.index-box5 .container .box .cn4 {
  color: #959ca6;
  line-height: 1.55555556em;
  margin-bottom: 0.2rem;
}
.index-box5 .container .box .cn5 {
  padding: 0.3rem;
}
footer {
  width: 100%;
  background-color: #000000;
}
footer .index-footer {
  max-width: 1920px;
  margin: 0 auto;
}
footer .index-footer .box1 {
  display: flex;
  flex-wrap: wrap;
}
footer .index-footer .box1 .left {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 1.3rem;
  padding-top: 0.8rem;
  width: 63.54166667%;
  padding-left: 200px;
}
@media (max-width: 1580px) {
  footer .index-footer .box1 .left {
    padding-left: 7.5%;
  }
}
@media (max-width: 1260px) {
  footer .index-footer .box1 .left {
    padding-left: 5%;
  }
}
@media (max-width: 991px) {
  footer .index-footer .box1 .left {
    width: 100%;
    padding: 0.6rem 5% !important;
  }
}
footer .index-footer .box1 .left .box1z {
  display: flex;
}
footer .index-footer .box1 .left .box1a {
  width: 1.9rem;
  margin-right: 2.5rem;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  footer .index-footer .box1 .left .box1a {
    width: 2.5rem;
  }
}
footer .index-footer .box1 .left .box1a .logo img {
  width: 1.87rem;
  height: 0.51rem;
}
footer .index-footer .box1 .left .box3 {
  display: flex;
  width: 100%;
}
@media (max-width: 991px) {
  footer .index-footer .box1 .left .box3 {
    display: none;
  }
}
footer .index-footer .box1 .left .box3 .box3a {
  margin-right: 1.4rem;
  flex-shrink: 0;
}
footer .index-footer .box1 .left .box3 .box3a .cn31 .cn32 {
  margin-bottom: 0.1rem;
}
footer .index-footer .box1 .left .box3 .box3a .cn31 .cn32 a {
  color: #fff;
  position: relative;
  line-height: 1.41666667em;
}
footer .index-footer .box1 .left .box3 .box3a .cn31 .cn32 a img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
}
footer .index-footer .box1 .left .box3 .box3a .cn31 .cn32.on a {
  color: #f07c00;
}
footer .index-footer .box1 .left .box3 .box3a .cn31 .cn32.on a img {
  opacity: 1;
  visibility: visible;
  right: -20px;
}
footer .index-footer .box1 .left .box3 .box3b {
  width: 100%;
  position: relative;
}
footer .index-footer .box1 .left .box3 .box3b .box3c {
  position: absolute;
  left: 0;
  top: 0;
  width: calc(100% - 0.3rem);
  max-height: calc(100% + 1rem);
  overflow: auto;
}
footer .index-footer .box1 .left .box3 .box3b .box3c .cn33 {
  width: 100%;
  opacity: 1;
  display: none;
}
footer .index-footer .box1 .left .box3 .box3b .box3c .cn33.on {
  display: block;
}
footer .index-footer .box1 .left .box3 .box3b .box3c .cn33 .cn35 {
  margin-top: 0.1rem;
}
footer .index-footer .box1 .left .box3 .box3b .box3c .cn33 .cn35.on .cn34 {
  color: #Fff;
}
footer .index-footer .box1 .left .box3 .box3b .box3c .cn33 .cn35.on .cn36 {
  display: inline-flex;
}
footer .index-footer .box1 .left .box3 .box3b .box3c .cn33 .cn34 {
  display: block;
  color: #777;
  line-height: 1.55555556em;
  margin-bottom: 0.05rem;
  opacity: 1;
}
footer .index-footer .box1 .left .box3 .box3b .box3c .cn33 .cn34:hover {
  color: #f07c00;
}
footer .index-footer .box1 .left .box3 .box3b .box3c .cn33 .cn36 {
  display: none;
  flex-wrap: wrap;
  border-radius: 0.05rem;
}
footer .index-footer .box1 .left .box3 .box3b .box3c .cn33 .cn36 .cn37 {
  line-height: 0.3rem;
  padding: 0 0.1rem;
  color: #888888;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.5s;
}
footer .index-footer .box1 .left .box3 .box3b .box3c .cn33 .cn36 .cn37:hover {
  color: #f07c00;
  text-decoration: underline;
}
footer .index-footer .box1 .right {
  width: 36.45833333%;
  padding-bottom: 0.6rem;
}
@media (max-width: 991px) {
  footer .index-footer .box1 .right {
    width: 100%;
    padding: 0 5% 0.6rem !important;
  }
}
footer .index-footer .box1 .right .box1e {
  padding: 0.6rem 0.4rem 0;
}
@media (max-width: 991px) {
  footer .index-footer .box1 .right .box1e {
    padding: 0;
  }
}
footer .index-footer .box1 .right .box1e .box1c .cn3 {
  color: #fff;
  line-height: 1.41666667em;
  margin-bottom: 0.2rem;
}
footer .index-footer .box1 .right .box1e .box1c .cn5 {
  margin-top: 0.1rem;
  display: flex;
}
footer .index-footer .box1 .right .box1e .box1c .cn5 .cn6 {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-right: 0.1rem;
}
footer .index-footer .box1 .right .box1e .box1c .cn5 .cn6 img {
  width: 0.2rem;
  height: auto;
}
@media (max-width: 991px) {
  footer .index-footer .box1 .right .box1e .box1c .cn5 .cn6 img {
    width: 0.4rem;
  }
}
footer .index-footer .box1 .right .box1e .box1c .cn5 .cn7 {
  text-decoration: underline;
  color: #999999;
  word-break: break-word;
  transition: all 0.3s ease-in;
}
footer .index-footer .box1 .right .box1e .box1c .cn5:hover .cn7 {
  color: #Fff;
}
footer .index-footer .box1 .right .box1e .box1z {
  display: flex;
  flex-wrap: wrap;
}
footer .index-footer .box1 .right .box1e .box1d {
  margin-top: 0.3rem;
  margin-right: 0.1rem;
  width: 0.5rem;
  flex-shrink: 0;
  position: relative;
}
@media (max-width: 991px) {
  footer .index-footer .box1 .right .box1e .box1d {
    width: 0.76rem;
    height: 0.76rem;
  }
}
footer .index-footer .box1 .right .box1e .box1d .cn6 {
  width: 0.5rem;
  height: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.5s;
}
@media (max-width: 991px) {
  footer .index-footer .box1 .right .box1e .box1d .cn6 {
    width: 0.76rem;
    height: 0.76rem;
  }
}
footer .index-footer .box1 .right .box1e .box1d .cn6 svg {
  width: 0.5rem;
  height: 0.5rem;
}
@media (max-width: 991px) {
  footer .index-footer .box1 .right .box1e .box1d .cn6 svg {
    width: 0.76rem;
    height: 0.76rem;
  }
}
footer .index-footer .box1 .right .box1e .box1d .cn6 svg path {
  transition: all 0.5s;
  fill: #999999;
  opacity: 1;
  stroke: none;
}
footer .index-footer .box1 .right .box1e .box1d .cn7 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 100%;
  padding-bottom: 0.2rem;
  width: 100px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}
@media (max-width: 991px) {
  footer .index-footer .box1 .right .box1e .box1d .cn7 {
    left: 0;
    transform: translateX(0);
  }
}
footer .index-footer .box1 .right .box1e .box1d .cn7 span {
  border: 1px solid #edf0f2;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.04rem;
  background-color: #Fff;
}
footer .index-footer .box1 .right .box1e .box1d .cn7 span img {
  width: 90px;
  height: 90px;
  object-fit: cover;
}
footer .index-footer .box1 .right .box1e .box1d:hover .cn6 {
  background-color: #f07c00;
}
footer .index-footer .box1 .right .box1e .box1d:hover .cn6 svg path {
  fill: #Fff;
}
footer .index-footer .box1 .right .box1e .box1d:hover .cn7 {
  opacity: 1;
  visibility: visible;
}
footer .index-footer .box2 {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 991px) {
  footer .index-footer .box2 {
    border-top: 0;
  }
}
footer .index-footer .box2 .left {
  padding: 0.25rem 0;
  width: 63.54166667%;
  padding-left: 200px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1580px) {
  footer .index-footer .box2 .left {
    padding-left: 7.5%;
  }
}
@media (max-width: 1260px) {
  footer .index-footer .box2 .left {
    padding-left: 5%;
  }
}
@media (max-width: 991px) {
  footer .index-footer .box2 .left {
    padding: 0 5%;
    width: 100%;
    text-align: center;
  }
}
footer .index-footer .box2 .left .cn1 {
  color: #999999;
  line-height: 1.71428571em;
  width: 4.4rem;
  padding-right: 0.3rem;
}
@media (max-width: 1580px) {
  footer .index-footer .box2 .left .cn1 {
    width: auto;
  }
}
@media (max-width: 767px) {
  footer .index-footer .box2 .left .cn1 {
    padding-right: 0;
    width: 100%;
    text-align: center;
  }
}
footer .index-footer .box2 .left .cn2 {
  color: #999999;
  line-height: 1.71428571em;
}
@media (max-width: 767px) {
  footer .index-footer .box2 .left .cn2 {
    width: 100%;
    text-align: center;
  }
}
footer .index-footer .box2 .left .cn2 a {
  color: #999999;
  line-height: 1.71428571em;
  transition: all 0.5s;
}
footer .index-footer .box2 .left .cn2 a:hover {
  color: #f07c00;
}
footer .index-footer .box2 .right {
  width: 36.45833333%;
  padding: 0.25rem 0.4rem 0.25rem 0.4rem;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  footer .index-footer .box2 .right {
    width: 100%;
    padding: 0.25rem 5%;
    justify-content: center;
  }
}
footer .index-footer .box2 .right .cn3 {
  color: #999;
  line-height: 1.71428571em;
  transition: all 0.5s;
  margin-right: 0.25rem;
}
@media (max-width: 991px) {
  footer .index-footer .box2 .right .cn3 {
    margin: 0 0.1rem;
  }
}
footer .index-footer .box2 .right .cn3:hover {
  color: #f07c00;
}
.public-nav99 {
  z-index: 2;
  position: relative;
}
.public-nav99 .pcn1 {
  color: rgba(34, 34, 34, 0.5);
}
.public-nav99 .pcn1:hover {
  color: #f07c00;
}
@media (max-width: 991px) {
  .public-nav99 .pcn1:last-child {
    display: none;
  }
}
.public-nav99 .pcn2 {
  color: rgba(34, 34, 34, 0.5);
}
.public-nav99 .pcn2 svg path {
  fill: #999;
  opacity: 1;
  stroke: none;
}
@media (max-width: 991px) {
  .public-nav99 .pcn2:nth-last-child(2) {
    display: none;
  }
}
.news-list {
  padding-bottom: 1rem;
  position: relative;
}
.news-list.news-list2 {
  padding-bottom: 0;
}
.news-list.tech-list {
  min-height: auto;
  padding-bottom: 0;
  overflow: hidden;
}
.news-list .ztitleimg {
  margin-top: 0.4rem;
  display: none;
  border-radius: 0.1rem;
}
.news-list .ztitleimg::before {
  padding-top: 59.21052632%;
}
@media (max-width: 991px) {
  .news-list .ztitleimg {
    display: block;
  }
}
.news-list .ztitle {
  z-index: 2;
  position: relative;
  color: #222222;
  line-height: 1.20833333em;
  color: #222;
  font-weight: normal;
  margin-top: 0.4rem;
  max-width: 9.1rem;
}
.news-list .ztitle1 {
  z-index: 2;
  position: relative;
  line-height: 1.45454545em;
  color: rgba(102, 102, 102, 0.6);
  font-weight: normal;
  margin-top: 0.3rem;
  margin-bottom: 1rem;
}
@media (max-width: 991px) {
  .news-list .ztitle1 br {
    display: none;
  }
}
.news-list .ztitle2 {
  z-index: 2;
  position: relative;
  display: flex;
  margin-top: -0.6rem;
}
.news-list .ztitle2 span {
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-list .ztitle2 span:nth-child(1) {
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background-color: #f07c00;
}
.news-list .ztitle2 span:nth-child(2) {
  color: #f07c00;
  margin-left: 0.1rem;
  transition: all 0.5s;
}
.news-list .ztitle2:hover span:nth-child(2) {
  transform: translateX(0.05rem);
}
.news-list .news-list1 {
  margin-top: 0.5rem;
}
.news-list .news-list1 .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.news-list .news-list1 .swiper-slide .imgbox {
  width: 47.5%;
  position: relative;
}
@media (max-width: 991px) {
  .news-list .news-list1 .swiper-slide .imgbox {
    width: 100%;
  }
}
.news-list .news-list1 .swiper-slide .imgbox .swiper-pagination {
  position: absolute;
  bottom: 0.3rem;
  left: 0;
  width: 100%;
  text-align: center;
}
.news-list .news-list1 .swiper-slide .imgbox .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #Fff;
  border-radius: 6px;
  margin: 0 0.09rem;
  opacity: 1;
}
.news-list .news-list1 .swiper-slide .imgbox .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #f07c00;
}
.news-list .news-list1 .swiper-slide .img {
  border-radius: 0.2rem;
}
.news-list .news-list1 .swiper-slide .img::before {
  padding-top: 59.73684211%;
}
.news-list .news-list1 .swiper-slide .text {
  width: 47.5%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.4rem 0.6rem 0.4rem 0;
}
@media (max-width: 991px) {
  .news-list .news-list1 .swiper-slide .text {
    width: 100%;
    padding: 0.4rem 0;
  }
}
.news-list .news-list1 .swiper-slide .text .text5 {
  width: 100%;
}
.news-list .news-list1 .swiper-slide .text .cn1 {
  display: flex;
  align-items: center;
  color: #999999;
}
.news-list .news-list1 .swiper-slide .text .cn1 .labelcn1 {
  margin-left: 0.1rem;
}
.news-list .news-list1 .swiper-slide .text .cn2 {
  margin-top: 0.2rem;
  line-height: 1.25em;
  color: #000;
}
.news-list .news-list1 .swiper-slide .text .text2 {
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news-list .news-list1 .swiper-slide .text .text2 .text3 {
  display: flex;
  align-items: center;
}
.news-list .news-list1 .swiper-slide .text .text2 .text3 .cn3 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #f07c00;
  margin-right: 0.1rem;
  transition: all 0.5s;
}
.news-list .news-list1 .swiper-slide .text .text2 .text3 .cn3 img {
  width: 33%;
  height: auto;
}
.news-list .news-list1 .swiper-slide .text .text2 .text3 .font16 {
  transition: all 0.5s;
  color: #333333;
}
.news-list .news-list1 .swiper-slide .text .text2 .text3:hover .cn3 {
  opacity: 0.8;
}
.news-list .news-list1 .swiper-slide .text .text2 .text3:hover .font16 {
  transform: translateX(0.05rem);
  color: #f07c00;
}
.news-list .news-list1 .swiper-slide .text .text2 .text4 {
  display: flex;
  align-items: flex-end;
}
.news-list .news-list1 .swiper-slide .text .text2 .text4 .font36 {
  color: #f07c00;
  line-height: 1em;
}
.news-list .news-list1 .swiper-slide .text .text2 .text4 .font18 {
  line-height: 1em;
  color: rgba(51, 51, 51, 0.3);
}
.labelcn1 {
  border-radius: 0.04rem;
  line-height: 2em;
  background-color: #fff;
  min-width: 0.82rem;
  text-align: center;
  padding: 0 0.1rem;
  color: #f07c00;
  transition: all 0.5s;
}
.labelcn1:hover {
  background-color: #f07c00;
  color: #Fff;
}
.publictopheader {
  position: relative;
  padding-top: 1.7rem;
  width: 100%;
}
.publictopheader::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #f0ede9;
  z-index: -2;
}
.publictopheader .zbgimg {
  position: absolute;
  right: 0;
  top: 0;
  width: 53.22916667%;
  max-width: 1022px;
}
@media (max-width: 991px) {
  .publictopheader .zbgimg {
    width: 85%;
  }
}
.publictopheader .zbgimg img {
  width: 100%;
}
.publictopheader .gradient-bg {
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  z-index: -1;
  top: 0;
  left: 0;
}
.publictopheader .gradient-bg .gradient-bg-base {
  filter: blur(80px);
  border-radius: 50%;
  width: 100%;
  top: -20%;
  position: absolute;
  padding-bottom: calc(1/3*100%);
  left: 22%;
  background: linear-gradient(1turn, rgba(240, 183, 101, 0.83) 33.84%, #f0b765 0);
}
.publictopheader .gradient-bg .gradient-bg-move {
  width: 100%;
  padding-bottom: calc(1.5/3*100%);
  height: 100vh;
  top: 0;
  left: 0;
  position: absolute;
  border-radius: 50%;
  background-color: #f0ede9;
  filter: blur(80px);
  animation: gradientMove 25s infinite alternate;
  animation-timing-function: cubic-bezier(0.2, 0, 0.8, 1);
}
@keyframes gradientMove {
  0% {
    transform: translate(0);
  }
  25% {
    transform: translate(20%);
  }
  50% {
    transform: translate(40%, 20%);
  }
  75% {
    transform: translate(20%);
  }
}
.public-nav0 {
  display: flex;
  z-index: 10;
  flex-wrap: wrap;
  margin-top: 0.84rem;
  padding-bottom: 0.84rem;
  position: relative;
}
@media (max-width: 991px) {
  .public-nav0 {
    padding-bottom: 0.4rem;
    border-bottom: 1px solid #d8d5d1;
    margin-bottom: 0.4rem;
  }
}
.public-nav0 .line1 {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0.33rem;
  width: 100px;
  height: 0.01rem;
  background-color: #d8d5d1;
  transition: all 0.5s;
}
@media (max-width: 991px) {
  .public-nav0 .line1 {
    display: none;
  }
}
.public-nav0 .line2 {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0.53rem;
  width: 100px;
  height: 0.01rem;
  background-color: #d8d5d1;
  transition: all 0.5s;
}
@media (max-width: 991px) {
  .public-nav0 .line2 {
    display: none;
  }
}
.public-nav0 .line3 {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0.33rem;
  width: 100px;
  height: 0.01rem;
  background-color: #d8d5d1;
  transition: all 0.5s;
}
@media (max-width: 991px) {
  .public-nav0 .line3 {
    display: none;
  }
}
.public-nav0 .xian3 {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.33rem;
  width: 0.3rem;
  height: 0.2rem;
  background-image: url(../images/qimg44.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
  transition: all 0.5s;
}
@media (max-width: 991px) {
  .public-nav0 .xian3 {
    display: none;
  }
}
.public-nav0 .xian4 {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.33rem;
  width: 0.3rem;
  height: 0.2rem;
  background-image: url(../images/qimgz1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
  transition: all 0.5s;
}
@media (max-width: 991px) {
  .public-nav0 .xian4 {
    display: none;
  }
}
.public-nav0 .public-nav1 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .public-nav0 .public-nav1 {
    width: 100%;
  }
}
.public-nav0 .public-nav1 .pcn1 {
  line-height: 0.52rem;
  border-radius: 0.26rem;
  background-color: #Fff;
  color: rgba(102, 102, 102, 0.6);
  min-width: 1.12rem;
  padding: 0 0.34rem;
  text-align: center;
  margin-right: 0.42rem;
  transition: all 0.5s;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}
.public-nav0 .public-nav1 .pcn1.pcn99 {
  padding: 0;
}
.public-nav0 .public-nav1 .pcn1 .tu6 {
  border-radius: 0.26rem;
  padding: 0 0.34rem;
  background-color: #Fff;
  position: relative;
  z-index: 20;
  width: 100%;
}
@media (max-width: 991px) {
  .public-nav0 .public-nav1 .pcn1 .tu6 {
    border-radius: 0.38rem;
  }
}
.public-nav0 .public-nav1 .pcn1 .tu1 {
  width: 0.15rem;
  height: auto;
  margin-left: 0.1rem;
}
@media (max-width: 991px) {
  .public-nav0 .public-nav1 .pcn1 .tu1 {
    width: 0.2rem;
    margin-left: 0.05rem;
  }
}
.public-nav0 .public-nav1 .pcn1 .tu1 path {
  fill: rgba(102, 102, 102, 0.6);
  opacity: 1;
  stroke: none;
  transition: all 0.5s;
}
.public-nav0 .public-nav1 .pcn1 .tu2 {
  padding-top: 0.6rem;
  padding-bottom: 0.2rem;
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 100%;
  border-radius: 0.26rem;
  background-color: #e7e1d7;
  z-index: 15;
  opacity: 0;
  visibility: hidden;
}
.public-nav0 .public-nav1 .pcn1 .tu2 .tu3 {
  display: flex;
  align-items: center;
  padding: 0.1rem 0.25rem 0;
}
.public-nav0 .public-nav1 .pcn1 .tu2 .tu3 .tu4 {
  flex-wrap: wrap;
  width: 0.14rem;
  height: 0.14rem;
  border: 1px solid #bbb4a3;
  margin-right: 0.1rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.1rem 0.1rem;
}
@media (max-width: 991px) {
  .public-nav0 .public-nav1 .pcn1 .tu2 .tu3 .tu4 {
    width: 0.2rem;
    height: 0.2rem;
    background-size: 0.14rem 0.14rem;
  }
}
.public-nav0 .public-nav1 .pcn1 .tu2 .tu3 .tu5 {
  line-height: 1.2em;
  color: #bbb4a3;
}
.public-nav0 .public-nav1 .pcn1 .tu2 .tu3.on .tu4 {
  border: 1px solid #f07c00;
  background-image: url(../images/qimg98.svg);
  background-color: #f07c00;
}
.public-nav0 .public-nav1 .pcn1 .tu2 .tu3.on .tu5 {
  color: #f07c00;
}
@media (max-width: 1260px) {
  .public-nav0 .public-nav1 .pcn1 {
    margin-right: 0.2rem;
  }
}
@media (max-width: 991px) {
  .public-nav0 .public-nav1 .pcn1 {
    margin-bottom: 0.2rem;
    line-height: 0.76rem;
    border-radius: 0.38rem;
    font-size: 0.26rem;
    margin-right: 0.2rem;
  }
}
@media (max-width: 767px) {
  .public-nav0 .public-nav1 .pcn1 {
    padding: 0 0.25rem;
    margin-right: 0.1rem;
  }
}
.public-nav0 .public-nav1 .pcn1 .xian1 {
  content: "";
  position: absolute;
  width: 0.3rem;
}
.public-nav0 .public-nav1 .pcn1.on {
  background-color: #f07c00;
  color: #Fff;
  transform: translateY(0.2rem);
}
@media (max-width: 991px) {
  .public-nav0 .public-nav1 .pcn1.on {
    transform: translateY(0);
  }
}
.public-nav0 .public-nav1 .pcn1.on span {
  opacity: 1;
}
.public-nav0 .public-nav1 .pcn1.on .tu6 {
  background-color: #f07c00;
}
.public-nav0 .public-nav1 .pcn1.on .tu2 {
  opacity: 1;
  visibility: visible;
}
.public-nav0 .public-nav1 .pcn1.on .tu1 path {
  fill: #Fff;
}
.public-search {
  margin: 0 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .public-search {
    width: 100%;
    padding-top: 0.5rem;
  }
}
.public-search .pleft2 {
  position: relative;
  z-index: 10;
}
@media (max-width: 991px) {
  .public-search .pleft2 {
    width: calc(50% - 0.2rem);
  }
}
.public-search .pleft2 form .cn11 input {
  width: 2rem;
  line-height: 0.4rem;
  height: initial;
  border-radius: 0.03rem;
  border: 1px solid #e7e7e7;
  background-color: #Fff;
  padding: 0 0.12rem;
  color: #999999;
}
@media (max-width: 991px) {
  .public-search .pleft2 form .cn11 input {
    line-height: 0.8rem;
    height: initial;
    border-radius: 0.4rem;
    width: 100%;
    padding: 0 0.6rem 0 0.3rem;
  }
}
.public-search .pleft2 form .cn11 input::placeholder {
  color: #999;
}
.public-search .pleft2 form .cn11 .layui-form-select .layui-edge {
  right: 0.12rem;
  color: #333;
  border-top-color: #434343;
}
@media (max-width: 991px) {
  .public-search .pleft2 form .cn11 .layui-form-select .layui-edge {
    right: 0.2rem;
  }
}
.public-search .pleft2 form .cn11 .layui-form-select dl {
  top: 0.4rem;
}
@media (max-width: 991px) {
  .public-search .pleft2 form .cn11 .layui-form-select dl {
    top: 0.8rem;
  }
}
.public-search .pleft2 form .cn11 .layui-form-selected input {
  border: 1px solid transparent;
}
.public-search .pright {
  width: 3rem;
  position: relative;
}
@media (max-width: 991px) {
  .public-search .pright {
    width: 100%;
    margin-left: 0;
  }
}
.public-search .pright input {
  width: 100%;
  border-radius: 0.26rem;
  line-height: 0.52rem;
  background-color: #Fff;
  padding: 0 0.6rem 0 0.2rem;
  color: #999999;
}
@media (max-width: 991px) {
  .public-search .pright input {
    padding: 0 1rem 0 0.3rem;
    line-height: 0.76rem;
    border-radius: 0.38rem;
  }
}
.public-search .pright input::placeholder {
  color: #999;
}
.public-search .pright button {
  position: absolute;
  top: 50%;
  right: 0.04rem;
  transform: translateY(-50%);
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 50%;
  background-color: #f07c00;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}
@media (max-width: 991px) {
  .public-search .pright button {
    width: 0.7rem;
    height: 0.7rem;
  }
}
.public-search .pright button img {
  width: 33%;
  height: auto;
}
.public-search .pright button:hover {
  opacity: 0.8;
}
.news-list-public {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .news-list-public {
    justify-content: space-between;
  }
}
.news-list-public .pbox {
  margin-top: 0.24rem;
  background-color: #Fff;
  border-radius: 0.2rem;
  margin-right: 0.24rem;
  width: calc((100% - 0.48rem) / 3);
}
@media (max-width: 991px) {
  .news-list-public .pbox {
    width: calc(50% - 0.12rem);
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .news-list-public .pbox {
    width: 100%;
  }
}
.news-list-public .pbox:nth-child(3n) {
  margin-right: 0;
}
.news-list-public .pbox .pimg {
  border-radius: 0.2rem;
  width: 100%;
}
.news-list-public .pbox .pimg::before {
  padding-top: 59.57446809%;
}
.news-list-public .pbox .ptext {
  padding: 0.3rem 0.4rem;
}
.news-list-public .pbox .ptext .pcn1 {
  line-height: 1.625em;
  color: #999999;
}
.news-list-public .pbox .ptext .pcn2 {
  margin: 0.15rem 0 0.3rem;
  color: #333333;
  line-height: 1.33333333em;
  height: 2.66666667em;
}
.news-list-public .pbox .ptext .pcn2 span {
  display: inline;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 93%, #f07c00 0%);
  background-size: 0 100%;
  background-repeat: no-repeat;
  transition: 0.5s;
}
.news-list-public .pbox .ptext .pcn3 {
  border-top: 1px solid #f0ede9;
  padding-top: 0.2rem;
  display: flex;
  flex-wrap: wrap;
}
.news-list-public .pbox .ptext .pcn3 .pcn4 {
  border-radius: 0.03rem;
  background-color: #F0f0f0;
  line-height: 2em;
  color: #999999;
  margin-right: 0.1rem;
  padding: 0 0.1rem;
  transition: all 0.5s;
  margin-bottom: 0.05rem;
}
.news-list-public .pbox .ptext .pcn3 .pcn4:hover {
  background-color: #f07c00;
  color: #Fff;
}
.news-list-public .pbox:hover .pimg img {
  transform: scale(1.05);
}
.news-list-public .pbox:hover .ptext .pcn2 {
  color: #f07c00;
}
.news-list-public .pbox:hover .ptext .pcn2 span {
  background-size: 100% 100%;
}
.public-page {
  margin-top: 0.6rem;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.public-page .public-page-ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.public-page .public-page-li {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.04);
  margin: 0.05rem;
  color: #666666;
  transition: all 0.5s;
}
@media (max-width: 991px) {
  .public-page .public-page-li {
    width: 0.55rem;
    height: 0.55rem;
  }
}
.public-page .public-page-li.on {
  background-color: #f07c00;
  color: #Fff;
}
.public-page .public-page-li:hover {
  background-color: #f07c00;
  color: #Fff;
}
.public-page .public-page-prev {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.04);
  margin: 0.05rem;
  color: #666666;
  transition: all 0.5s;
  position: relative;
}
.public-page .public-page-prev::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #f07c00;
  opacity: 0;
  transition: all 0.5s;
}
.public-page .public-page-prev.public-page-next {
  transform: rotate(180deg);
}
.public-page .public-page-prev svg {
  width: 34%;
  height: auto;
}
.public-page .public-page-prev svg path {
  fill: #333;
  opacity: 1;
  stroke: none;
  transition: all 0.5s;
}
@media (max-width: 991px) {
  .public-page .public-page-prev {
    width: 0.55rem;
    height: 0.55rem;
  }
}
.public-page .public-page-prev:hover {
  background-color: rgba(240, 124, 0, 0.2);
}
.public-page .public-page-prev:hover::before {
  opacity: 1;
}
.public-page .public-page-prev:hover svg path {
  fill: #f07c00;
}
.public-page .public-page-prev:hover {
  background-color: rgba(240, 124, 0, 0.2);
}
.public-page .public-page-prev:hover::before {
  opacity: 1;
}
.public-page .public-page-prev:hover svg path {
  fill: #f07c00;
}
.news-info1 {
  margin-top: 0.7rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #d8d4ce;
  padding-bottom: 0.3rem;
}
.news-info1 .cn1 {
  color: #000000;
  line-height: 1.625em;
}
@media (max-width: 767px) {
  .news-info1 .cn1 {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .news-info1 .cn1 span {
    display: none;
  }
}
.news-info1 .share {
  display: flex;
  align-items: center;
  color: #666666;
}
.news-info1 .share .cn4 {
  width: 0.4rem;
  height: 0.4rem;
  background-color: #Fff;
  border-radius: 50%;
  margin: 0 0 0 0.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}
.news-info1 .share .cn4::before {
  display: none;
}
@media (max-width: 991px) {
  .news-info1 .share .cn4 {
    width: 0.6rem;
    height: 0.6rem;
  }
}
.news-info1 .share .cn4 svg {
  width: 100%;
  height: auto;
}
.news-info1 .share .cn4 svg path {
  fill: #999;
  opacity: 1;
  stroke: none;
}
.news-info1 .share .cn4:hover {
  transition: all 0.5s;
  background-color: #f07c00;
}
.news-info1 .share .cn4:hover svg path {
  fill: #fff;
}
.news-info2 {
  padding: 0.6rem 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.news-info2 .left {
  width: 70.625%;
}
@media (max-width: 991px) {
  .news-info2 .left {
    width: 100%;
  }
}
.news-info2 .left .box3 {
  margin-top: 0.6rem;
  border-top: 1px solid #d8d4ce;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.3rem;
  width: 100%;
}
@media (max-width: 991px) {
  .news-info2 .left .box3 {
    flex-wrap: wrap;
  }
}
.news-info2 .left .box3 .box3a {
  width: calc(100% - 1.7rem);
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .news-info2 .left .box3 .box3a {
    width: 100%;
    padding-right: 0;
  }
}
.news-info2 .left .box3 .box3b {
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .news-info2 .left .box3 .box3b {
    width: 100%;
    margin-top: 0.5rem;
  }
}
.news-info2 .left .box3 .box3b .zpcn2 {
  text-align: center;
}
.news-info2 .left .box3 .box3b .public-btn0 {
  justify-content: center;
}
.news-info2 .left .box3 .cn50 {
  color: #333;
  line-height: 2.25em;
  transition: all 0.4s;
  display: block;
}
@media (max-width: 991px) {
  .news-info2 .left .box3 .cn50 {
    width: 100%;
  }
}
.news-info2 .left .box3 .cn50:hover {
  color: #f07c00;
}
.news-info2 .left .box3 .cn50.cn5none {
  color: #999999;
  cursor: auto;
}
.news-info2 .right {
  width: 22.5%;
}
@media (max-width: 991px) {
  .news-info2 .right {
    width: 100%;
    margin-top: 1.2rem;
  }
}
.news-info2 .right .box4 .cn6 {
  color: #000000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 0.25rem;
  margin-bottom: 0.13rem;
}
@media (max-width: 991px) {
  .news-info2 .right .box4 .cn6 {
    font-size: 0.4rem;
  }
}
.news-info2 .right .box4 .cn7 {
  padding: 0.38rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.news-info2 .right .box4 .cn7:last-child {
  border-bottom: 0;
  padding: 0.38rem 0 0;
}
.news-info2 .right .box4 .cn7 .cn7a {
  width: 100%;
  border-radius: 0.2rem;
}
.news-info2 .right .box4 .cn7 .cn7a::before {
  padding-top: 60%;
}
.news-info2 .right .box4 .cn7 .cn7b {
  width: 100%;
}
.news-info2 .right .box4 .cn7 .cn8 {
  display: block;
  color: #333333;
  transition: all 0.4s;
  line-height: 1.5em;
}
.news-info2 .right .box4 .cn7 .cn9 {
  display: block;
  color: #999999;
  transition: all 0.4s;
  line-height: 1.71428571em;
  margin-top: 0.25rem;
}
.news-info2 .right .box4 .cn7:hover .cn7a img {
  transform: scale(1.05);
}
.news-info2 .right .box4 .cn7:hover .cn8 {
  color: #f07c00;
}
.news-info2 .right .box4 .cn7:hover .cn9 {
  color: #f07c00;
}
.social-share .icon-wechat .wechat-qrcode {
  top: calc(100% + 0.1rem);
  z-index: 10;
}
.social-share .icon-wechat .wechat-qrcode:after {
  display: none;
}
.download-list {
  position: relative;
  margin-top: 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.download-list .left {
  position: sticky;
  left: 0;
  top: 1.1rem;
  width: 20.375%;
}
@media (max-width: 991px) {
  .download-list .left {
    position: relative;
    width: 100%;
    top: 0;
  }
}
.download-list .left .public-search .pright {
  width: 100%;
  margin-bottom: 0.38rem;
}
.download-list .left .leftbox {
  cursor: pointer;
}
.download-list .left .leftbox.tebie.on2 .cn1 svg {
  transform: translateY(-50%) rotate(90deg);
}
.download-list .left .leftbox .cn1 {
  border-top: 1px solid #e5e5e5;
  line-height: 0.76rem;
  display: flex;
  align-items: center;
  color: #333333;
  transition: all 0.5s;
  position: relative;
}
@media (max-width: 991px) {
  .download-list .left .leftbox .cn1 {
    line-height: 0.9rem;
    font-size: 0.32rem;
  }
}
.download-list .left .leftbox .cn1 svg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s;
}
.download-list .left .leftbox .cn1 svg path {
  fill: #999;
  opacity: 1;
  stroke: none;
  transition: all 0.5s;
}
.download-list .left .leftbox .cn2 {
  display: none;
}
.download-list .left .leftbox .cn2 .cn3 {
  margin-bottom: 0.15rem;
}
.download-list .left .leftbox .cn2 .cn3.on .cn4 .cn5 {
  background-color: #f07c00;
  border: 1px solid #f07c00;
}
.download-list .left .leftbox .cn2 .cn3.on .cn4 .cn5 img {
  opacity: 1;
}
.download-list .left .leftbox .cn2 .cn3.on .cn4 .cn6 {
  color: #333;
}
.download-list .left .leftbox .cn2 .cn3.on .cn4 .cn7 svg {
  transform: rotate(90deg);
}
.download-list .left .leftbox .cn2 .cn3.on .cn4 .cn7 svg path {
  fill: #f07c00;
}
.download-list .left .leftbox .cn2 .cn3 .cn4 {
  display: flex;
  position: relative;
}
.download-list .left .leftbox .cn2 .cn3 .cn4 .cn5 {
  transition: all 0.5s;
  width: 20px;
  height: 20px;
  background-color: #ededed;
  border-radius: 0.04rem;
  border: 1px solid #ccc;
  flex-shrink: 0;
  margin-right: 0.15rem;
  position: relative;
}
.download-list .left .leftbox .cn2 .cn3 .cn4 .cn5 img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
  opacity: 0;
}
.download-list .left .leftbox .cn2 .cn3 .cn4 .cn6 {
  color: #666666;
  line-height: 20px;
  transition: all 0.5s;
}
.download-list .left .leftbox .cn2 .cn3 .cn4 .cn7 {
  transition: all 0.5s;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.download-list .left .leftbox .cn2 .cn3 .cn4 .cn7 svg {
  transition: all 0.5s;
}
.download-list .left .leftbox .cn2 .cn3 .cn4 .cn7 svg path {
  fill: #999;
  opacity: 1;
  stroke: none;
  transition: all 0.5s;
}
.download-list .left .leftbox .cn2 .cn3 .cn8 {
  display: none;
  background-color: #Fff;
  border-radius: 0.1rem;
  padding: 0.24rem;
  margin-top: 0.24rem;
  margin-bottom: 0.24rem;
}
.download-list .left .leftbox .cn2 .cn3 .cn8 .cn9 {
  display: flex;
  position: relative;
  margin-bottom: 0.1rem;
}
.download-list .left .leftbox .cn2 .cn3 .cn8 .cn9:last-child {
  margin-bottom: 0;
}
.download-list .left .leftbox .cn2 .cn3 .cn8 .cn9 .cn10 {
  width: 20px;
  height: 20px;
  background-color: #ededed;
  border-radius: 0.04rem;
  border: 1px solid #ccc;
  flex-shrink: 0;
  margin-right: 0.15rem;
  position: relative;
}
.download-list .left .leftbox .cn2 .cn3 .cn8 .cn9 .cn10 img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
  opacity: 0;
}
.download-list .left .leftbox .cn2 .cn3 .cn8 .cn9 .cn11 {
  color: #666666;
  line-height: 20px;
}
.download-list .left .leftbox .cn2 .cn3 .cn8 .cn9.on .cn10 {
  background-color: #f07c00;
  border: 1px solid #f07c00;
}
.download-list .left .leftbox .cn2 .cn3 .cn8 .cn9.on .cn10 img {
  opacity: 1;
}
.download-list .left .leftbox .cn2 .cn3 .cn8 .cn9.on .cn11 {
  color: #333;
}
.download-list .left .leftbox.on .cn1 {
  color: #f07c00;
}
.download-list .left .leftbox.on .cn1 svg path {
  fill: #f07c00;
}
.download-list .right {
  width: 73.75%;
}
@media (max-width: 991px) {
  .download-list .right {
    width: 100%;
    margin-top: 0.5rem;
  }
}
.download-list .right .rightbox1 {
  background-color: #Fff;
  border-radius: 0.2rem;
  padding: 0.25rem 0.6rem 0.3rem;
}
@media (max-width: 991px) {
  .download-list .right .rightbox1 {
    padding: 0.7rem 0.3rem;
  }
}
.download-list .right .rightbox1 form {
  position: relative;
}
.download-list .right .rightbox1 input {
  line-height: 0.55rem;
  width: 100%;
  border-bottom: 1px solid #e5e5e5;
  color: #999999;
  padding: 0 1rem 0 0;
  position: relative;
}
@media (max-width: 991px) {
  .download-list .right .rightbox1 input {
    line-height: 0.76rem;
  }
}
.download-list .right .rightbox1 input::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #f07c00;
  transition: all 0.5s;
}
.download-list .right .rightbox1 input::placeholder {
  color: #999;
}
.download-list .right .rightbox1 button {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.download-list .right .rightbox1 button svg path {
  fill: #ccc;
  opacity: 1;
  stroke: none;
  transition: all 0.5s;
}
.download-list .right .rightbox1 button:hover svg path {
  fill: #f07c00;
}
.download-list .right .rightbox2 .rightbox3 {
  display: none;
  background-color: #ffffff;
  border-radius: 0.2rem;
  padding: 0.45rem 0.6rem 0.7rem;
}
@media (max-width: 991px) {
  .download-list .right .rightbox2 .rightbox3 {
    padding: 0.7rem 0.3rem;
  }
}
.download-list .right .rightbox2 .rightbox3.on {
  display: block;
}
.download-list .right .rightbox2 .rightbox3 .cn1 {
  line-height: 1.3125em;
  color: #111;
  padding-bottom: 0.35rem;
}
.download-list .right .rightbox2 .rightbox3 .cn2 .cn3 {
  display: flex;
  align-items: center;
  padding: 0 0.3rem;
  border-top: 1px solid #e5e5e5;
  transition: all 0.5s;
}
@media (max-width: 991px) {
  .download-list .right .rightbox2 .rightbox3 .cn2 .cn3 {
    border-top: 1px solid #e5e5e5 !important;
    flex-wrap: wrap;
    padding: 0.3rem;
  }
}
.download-list .right .rightbox2 .rightbox3 .cn2 .cn3:hover {
  background-color: #fdf2e5;
  border-radius: 0.1rem;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991px) {
  .download-list .right .rightbox2 .rightbox3 .cn2 .cn3:hover {
    border-radius: 0;
    box-shadow: initial;
  }
}
.download-list .right .rightbox2 .rightbox3 .cn2 .cn3:hover .cn4 {
  color: #f07c00;
}
.download-list .right .rightbox2 .rightbox3 .cn2 .cn3 .cn4 {
  width: 100%;
  line-height: 0.8rem;
  padding-right: 0.2rem;
  color: #666666;
}
@media (max-width: 991px) {
  .download-list .right .rightbox2 .rightbox3 .cn2 .cn3 .cn4 {
    font-size: 0.32rem;
    line-height: 1rem;
    text-overflow: initial;
    overflow: initial;
    white-space: initial;
    line-height: 1.5em;
    padding-right: 0;
    word-break: break-all;
  }
}
.download-list .right .rightbox2 .rightbox3 .cn2 .cn3 .cn4.cn4a {
  width: 60%;
}
@media (max-width: 991px) {
  .download-list .right .rightbox2 .rightbox3 .cn2 .cn3 .cn4.cn4a {
    width: 50%;
    margin-top: 0.2rem;
    font-size: 0.28rem;
  }
}
.download-list .right .rightbox2 .rightbox3 .cn2 .cn3 .cn4.cn4b {
  width: 30%;
}
@media (max-width: 991px) {
  .download-list .right .rightbox2 .rightbox3 .cn2 .cn3 .cn4.cn4b {
    display: none;
  }
}
.download-list .right .rightbox2 .rightbox3 .cn2 .cn3 .cn5 {
  margin-left: 0.55rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: #999999;
  transition: all 0.5s;
}
@media (max-width: 991px) {
  .download-list .right .rightbox2 .rightbox3 .cn2 .cn3 .cn5 {
    margin-left: 0;
    width: 50%;
    justify-content: flex-end;
  }
}
.download-list .right .rightbox2 .rightbox3 .cn2 .cn3 .cn5 svg {
  width: 0.21rem;
  margin-right: 0.08rem;
}
@media (max-width: 991px) {
  .download-list .right .rightbox2 .rightbox3 .cn2 .cn3 .cn5 svg {
    width: 0.3rem;
  }
}
.download-list .right .rightbox2 .rightbox3 .cn2 .cn3 .cn5 svg path {
  fill: #999;
  opacity: 1;
  stroke: none;
  transition: all 0.5s;
}
.download-list .right .rightbox2 .rightbox3 .cn2 .cn3 .cn5:hover {
  color: #f07c00;
}
.download-list .right .rightbox2 .rightbox3 .cn2 .cn3 .cn5:hover svg path {
  fill: #f07c00;
}
.download-list .right .rightbox2 .rightbox3 .cn2 .cn3 .cn5:hover .yuan {
  border: 1px solid #f07c00;
}
.download-list .right .rightbox2 .rightbox3 .cn2 .cn3 .cn5:hover .yuan em {
  background-color: #f07c00;
}
.download-list .right .rightbox2 .rightbox3 .cn2 .cn3 .cn5 .yuan {
  width: 18px;
  height: 18px;
  border: 1px solid #333;
  position: relative;
  border-radius: 50%;
  margin-left: 0.08rem;
  transition: all 0.5s;
}
@media (max-width: 1580px) {
  .download-list .right .rightbox2 .rightbox3 .cn2 .cn3 .cn5 .yuan {
    width: 16px;
    height: 16px;
  }
}
.download-list .right .rightbox2 .rightbox3 .cn2 .cn3 .cn5 .yuan em {
  transition: all 0.5s;
  background-color: #333;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.download-list .right .rightbox2 .rightbox3 .cn2 .cn3 .cn5 .yuan em:nth-child(1) {
  width: 10px;
  height: 1px;
}
@media (max-width: 1580px) {
  .download-list .right .rightbox2 .rightbox3 .cn2 .cn3 .cn5 .yuan em:nth-child(1) {
    width: 8px;
  }
}
.download-list .right .rightbox2 .rightbox3 .cn2 .cn3 .cn5 .yuan em:nth-child(2) {
  width: 1px;
  height: 10px;
}
@media (max-width: 1580px) {
  .download-list .right .rightbox2 .rightbox3 .cn2 .cn3 .cn5 .yuan em:nth-child(2) {
    height: 8px;
  }
}
.download-list .right .rightbox2 .rightbox3 .cn2 .cn3 .cn5.on {
  color: #f07c00;
}
.download-list .right .rightbox2 .rightbox3 .cn2 .cn3 .cn5.on .yuan {
  border: 1px solid #f07c00;
}
.download-list .right .rightbox2 .rightbox3 .cn2 .cn3 .cn5.on .yuan em {
  background-color: #f07c00;
}
.download-list .right .rightbox2 .rightbox3 .cn2 .cn3 .cn5.on .yuan em:nth-child(2) {
  transform: translate(-50%, -50%) rotate(90deg);
}
.download-list .right .rightbox2 .rightbox3 .cn2 .cn3 .cn6 {
  margin-left: 0.55rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: #999999;
  transition: all 0.5s;
}
@media (max-width: 991px) {
  .download-list .right .rightbox2 .rightbox3 .cn2 .cn3 .cn6 {
    margin-top: 0.2rem;
    margin-left: 0;
    width: 50%;
    justify-content: flex-end;
  }
}
.download-list .right .rightbox2 .rightbox3 .cn2 .cn3 .cn6 svg {
  width: 0.21rem;
  margin-left: 0.08rem;
}
@media (max-width: 991px) {
  .download-list .right .rightbox2 .rightbox3 .cn2 .cn3 .cn6 svg {
    width: 0.3rem;
  }
}
.download-list .right .rightbox2 .rightbox3 .cn2 .cn3 .cn6 svg path {
  fill: #999;
  opacity: 1;
  stroke: none;
  transition: all 0.5s;
}
.download-list .right .rightbox2 .rightbox3 .cn2 .cn3 .cn6:hover {
  color: #f07c00;
}
.download-list .right .rightbox2 .rightbox3 .cn2 .cn3 .cn6:hover svg path {
  fill: #f07c00;
}
.download-list .right .rightbox2 .rightbox3 .cn10 {
  text-align: center;
  color: #999;
}
@media (max-width: 991px) {
  .download-list .right .rightbox2 .rightbox3 .cn11 .cn3 {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .download-list .right .rightbox2 .rightbox3 .cn11 .cn3 .cn4 {
    padding: 0.1rem 0;
  }
}
.download-list .right .rightbox2 .rightbox3 .cn11 .cn3 .cn5 {
  margin-left: 1.1rem;
}
@media (max-width: 1580px) {
  .download-list .right .rightbox2 .rightbox3 .cn11 .cn3 .cn5 {
    margin-left: 0.55rem;
  }
}
@media (max-width: 991px) {
  .download-list .right .rightbox2 .rightbox3 .cn11 .cn3 .cn5 {
    margin-left: 0;
    margin-right: 0.25rem;
    margin-bottom: 0.25rem;
  }
}
.download-list .right .rightbox2 .rightbox3 .cn11.on .cn3 {
  border-top: 1px solid transparent;
}
.download-list .right .rightbox2 .rightbox3 .cn12 {
  padding: 0.2rem 0.35rem;
  border-radius: 0.1rem;
  background-color: #F8f8f8;
  margin-bottom: 0.4rem;
  display: none;
}
.download-list .right .rightbox2 .rightbox3 .cn12 .cn13 {
  color: #111;
  line-height: 1.625em;
  padding-bottom: 0.15rem;
}
.download-list .right .rightbox2 .rightbox3 .cn12 .cn14 .cn15 {
  display: flex;
  border-top: 1px solid #ededed;
}
.download-list .right .rightbox2 .rightbox3 .cn12 .cn14 .cn15:hover .cn16 {
  color: #f07c00;
}
.download-list .right .rightbox2 .rightbox3 .cn12 .cn14 .cn15 .cn16 {
  transition: all 0.5s;
  width: 100%;
  line-height: 0.8rem;
  color: #666666;
}
@media (max-width: 991px) {
  .download-list .right .rightbox2 .rightbox3 .cn12 .cn14 .cn15 .cn16 {
    line-height: 1rem;
  }
}
.download-list .right .rightbox2 .rightbox3 .cn12 .cn14 .cn15 .cn17 {
  margin-left: 0.55rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: #999999;
  transition: all 0.5s;
}
@media (max-width: 991px) {
  .download-list .right .rightbox2 .rightbox3 .cn12 .cn14 .cn15 .cn17 {
    margin-left: 0.25rem;
  }
}
.download-list .right .rightbox2 .rightbox3 .cn12 .cn14 .cn15 .cn17 svg {
  width: 0.21rem;
  margin-right: 0.08rem;
}
@media (max-width: 991px) {
  .download-list .right .rightbox2 .rightbox3 .cn12 .cn14 .cn15 .cn17 svg {
    width: 0.3rem;
  }
}
.download-list .right .rightbox2 .rightbox3 .cn12 .cn14 .cn15 .cn17 svg path {
  fill: #999;
  opacity: 1;
  stroke: none;
  transition: all 0.5s;
}
.download-list .right .rightbox2 .rightbox3 .cn12 .cn14 .cn15 .cn17:hover {
  color: #f07c00;
}
.download-list .right .rightbox2 .rightbox3 .cn12 .cn14 .cn15 .cn17:hover svg path {
  fill: #f07c00;
}
.download-list .right .rightbox2 .cn30 {
  color: #666;
  line-height: 1.625em;
  padding-bottom: 0.25rem;
}
.download-list .right .rightbox2 .cn30 span {
  color: #f07c00;
}
.download-list .right .rightbox2 .rightbox3 {
  margin-bottom: 0.3rem;
}
.download-list .right .rightbox2 .rightbox3 .cn2.cn31 .cn11 .cn3 .cn4 {
  padding: 0.35rem 0;
}
.download-list .right .rightbox2 .rightbox3 .cn2.cn31 .cn11 .cn3 .cn4 .cn4a {
  color: #111111;
  line-height: 1.45454545em;
  transition: all 0.5s;
}
.download-list .right .rightbox2 .rightbox3 .cn2.cn31 .cn11 .cn3 .cn4 .cn4b {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.05rem;
}
.download-list .right .rightbox2 .rightbox3 .cn2.cn31 .cn11 .cn3 .cn4 .cn4b .cn4c {
  color: #999999;
  line-height: 1.625em;
}
.download-list .right .rightbox2 .rightbox3 .cn2.cn31 .cn11 .cn3 .cn4 .cn4b .cn4c em {
  font-style: normal;
  color: #999999;
  margin: 0 0.05rem;
}
.download-list .right .rightbox2 .rightbox3 .cn2.cn31 .cn11 .cn3 .cn4 .cn4b .cn4c:last-child em {
  display: none;
}
.download-list .right .rightbox2 .rightbox3 .cn2.cn31 .cn11 .cn3 .cn5 {
  color: #333333 !important;
  margin-left: 2.4rem;
}
@media (max-width: 991px) {
  .download-list .right .rightbox2 .rightbox3 .cn2.cn31 .cn11 .cn3 .cn5.renzhengbutton {
    margin-left: auto;
  }
}
.download-list .right .rightbox2 .rightbox3 .cn2.cn31 .cn11 .cn3 .cn5 img {
  width: 0.17rem;
  margin-right: 0.05rem;
}
@media (max-width: 991px) {
  .download-list .right .rightbox2 .rightbox3 .cn2.cn31 .cn11 .cn3 .cn5 img {
    width: 0.3rem;
    margin-right: 0.1rem;
  }
}
@media (max-width: 991px) {
  .download-list .right .rightbox2 .rightbox3 .cn2.cn31 .cn11 .cn3 .cn5 {
    margin-left: 0;
  }
}
.download-list .right .rightbox2 .rightbox3 .cn2.cn31 .cn11 .cn3 .cn5 .yuan {
  margin-left: 0;
}
.download-list .right .rightbox2 .rightbox3 .cn2.cn31 .cn11.on2 .cn3 .cn4 .cn4a {
  color: #f07c00;
}
.download-list .right .rightbox2 .rightbox3 .cn2.cn31 .cn11.on2 .cn5 .yuan {
  border: 1px solid #f07c00;
}
.download-list .right .rightbox2 .rightbox3 .cn2.cn31 .cn11.on2 .cn5 .yuan em {
  background-color: #f07c00;
}
.download-list .right .rightbox2 .rightbox3 .cn2.cn31 .cn11 .cn12 {
  padding: 0.2rem 0.35rem 0.4rem;
  margin-bottom: 0;
}
.download-list .right .rightbox2 .rightbox3 .cn2.cn31 .cn11 .cn12 .cn12a {
  color: #666666;
  line-height: 2em;
}
.download-list .right .rightbox2 .rightbox3 .cn2.cn31 .cn11 .cn12 .cn12a h3 {
  font-weight: bold;
  font-size: 18px;
  color: #111111;
  line-height: 2em;
}
@media (max-width: 1580px) {
  .download-list .right .rightbox2 .rightbox3 .cn2.cn31 .cn11 .cn12 .cn12a h3 {
    font-size: 16px;
  }
}
@media (max-width: 1260px) {
  .download-list .right .rightbox2 .rightbox3 .cn2.cn31 .cn11 .cn12 .cn12a h3 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .download-list .right .rightbox2 .rightbox3 .cn2.cn31 .cn11 .cn12 .cn12a h3 {
    font-size: 0.28rem;
  }
}
.download-list .right .rightbox2 .rightbox3 .cn2.cn31 .cn11 .cn12 .public-btn {
  margin-top: 0.4rem;
}
.pubic-video-list {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
@media (max-width: 991px) {
  .pubic-video-list {
    justify-content: space-between;
  }
}
.pubic-video-list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background-color: #e5e5e5;
}
.pubic-video-list .video-box {
  margin-top: 0.5rem;
  margin-right: 0.3rem;
  width: calc((100% - 0.6rem) / 3);
}
@media (max-width: 991px) {
  .pubic-video-list .video-box {
    width: calc(50% - 0.25rem);
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .pubic-video-list .video-box {
    width: 100%;
  }
}
.pubic-video-list .video-box:nth-child(3n) {
  margin-right: 0;
}
.pubic-video-list .video-box .img {
  border-radius: 0.1rem;
}
.pubic-video-list .video-box .img::before {
  padding-top: 62.64705882%;
}
.pubic-video-list .video-box .img .bgcolor {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #f07c00;
  opacity: 0;
  z-index: 3;
  transition: all 0.5s;
}
.pubic-video-list .video-box .img .icon {
  opacity: 0;
  z-index: 4;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.5rem;
  height: 0.5rem;
}
.pubic-video-list .video-box .pcn1 {
  color: #999999;
  line-height: 1.625em;
  margin-top: 0.2rem;
  transition: all 0.5s;
}
.pubic-video-list .video-box .pcn2 {
  margin-top: 0.05rem;
  color: #333333;
  line-height: 1.33333333em;
  width: 65%;
  transition: all 0.5s;
}
@media (max-width: 991px) {
  .pubic-video-list .video-box .pcn2 {
    width: 100%;
  }
}
.pubic-video-list .video-box:hover .img .img1 {
  transform: scale(1.05);
}
.pubic-video-list .video-box:hover .img .bgcolor {
  opacity: 0.85;
}
.pubic-video-list .video-box:hover .img .icon {
  opacity: 1;
}
.pubic-video-list .video-box:hover .pcn1 {
  color: #222222;
}
.pubic-video-list .video-box:hover .pcn2 {
  color: #f07c00;
}
.public-windows {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}
.public-windows .container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 640px;
  width: 90%;
  background-color: #Fff;
  display: flex;
  max-height: 90%;
  border-radius: 0.1rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .public-windows .container {
    max-height: 80%;
  }
}
.public-windows .container .right {
  width: 100%;
  padding: 0.6rem;
  overflow: auto;
  position: relative;
}
@media (max-width: 991px) {
  .public-windows .container .right {
    padding: 0.6rem 0.3rem;
    width: 100%;
  }
}
.public-windows .container .right .close {
  position: absolute;
  right: 0.4rem;
  top: 0.4rem;
  cursor: pointer;
  width: 0.48rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0.48rem;
  background-color: #fdf2e5;
  border-radius: 0.1rem;
}
.public-windows .container .right .close svg {
  width: 0.2rem;
  height: 0.2rem;
}
.public-windows .container .right .close svg path {
  transition: all 0.5s;
  fill: #222222;
  opacity: 1;
  stroke: none;
}
.public-windows .container .right .close:hover svg path {
  fill: #f07c00;
}
.public-windows .container .right .cn9 {
  color: #222;
  line-height: 1.41666667em;
  text-align: left;
}
@media (max-width: 767px) {
  .public-windows .container .right .cn9 {
    font-size: 0.4rem;
    margin-bottom: 0.2rem;
  }
}
.public-windows .container .right .cn10 {
  text-align: left;
  color: #666666;
  line-height: 1.625em;
  margin: 0 0 0.2rem;
}
.public-windows .container .right .cn11 {
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
}
.public-windows .container .right .cn11 .cn12 {
  margin-bottom: 0.1rem;
  width: 100%;
}
@media (max-width: 767px) {
  .public-windows .container .right .cn11 .cn12 {
    width: 100%;
  }
}
.public-windows .container .right .cn11 .cn12.cn20 {
  width: 100%;
}
.public-windows .container .right .cn11 .cn12 .cn13 {
  margin-top: 0.1rem;
  color: #000000;
  margin-bottom: 0.1rem;
}
.public-windows .container .right .cn11 .cn12 .cn13 span {
  color: #f07c00;
}
.public-windows .container .right .cn11 .cn12 .cn14 .box {
  display: flex;
  flex-wrap: wrap;
}
.public-windows .container .right .cn11 .cn12 .cn14 label {
  padding-right: 0.2rem;
  width: 25%;
  align-items: center;
  display: flex;
  color: #999;
  margin-top: 0.1rem;
  cursor: pointer;
}
@media (max-width: 991px) {
  .public-windows .container .right .cn11 .cn12 .cn14 label {
    width: calc(100% / 3);
  }
}
@media (max-width: 767px) {
  .public-windows .container .right .cn11 .cn12 .cn14 label {
    width: 50%;
  }
}
.public-windows .container .right .cn11 .cn12 .cn14 input {
  width: 100%;
  line-height: 1.5em;
  padding: 0.15rem 0.27rem;
  border: 1px solid #eee;
  background-color: #fafafa;
  border-radius: 0.08rem;
  color: #999;
  transition: all 0.5s;
}
@media (max-width: 767px) {
  .public-windows .container .right .cn11 .cn12 .cn14 input {
    height: 0.76rem;
    line-height: 0.76rem;
  }
}
.public-windows .container .right .cn11 .cn12 .cn14 input::placeholder {
  transition: all 0.5s;
  color: #999;
}
.public-windows .container .right .cn11 .cn12 .cn14 input:focus {
  border: 1px solid #f07c00;
  color: #f07c00;
}
.public-windows .container .right .cn11 .cn12 .cn14 input:focus::placeholder {
  color: #f07c00;
}
.public-windows .container .right .cn11 .cn12 .cn14 textarea {
  width: 100%;
  line-height: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 0 0.15rem;
  color: #999;
  height: 1rem;
}
.public-windows .container .right .cn11 .cn12 .cn14 textarea::placeholder {
  color: #999;
}
.public-windows .container .right .cn11 .cn12 .cn14 .qqq {
  cursor: pointer;
  margin-right: 0.1rem;
  width: 0.2rem;
  height: 0.2rem;
  border: 1px solid #e6e6e6;
  border-radius: 0;
  transition: all 0.5s;
  background-repeat: no-repeat;
  background-size: 0.08rem 0.06rem;
  background-position: center;
  padding: 0;
}
.public-windows .container .right .cn11 .cn12 .cn14 .qqq:focus {
  border: 1px solid #e6e6e6;
}
.public-windows .container .right .cn11 .cn12 .cn14 .qqq:focus::placeholder {
  color: #e6e6e6;
}
@media (max-width: 991px) {
  .public-windows .container .right .cn11 .cn12 .cn14 .qqq {
    width: 0.3rem;
    height: 0.3rem;
  }
}
.public-windows .container .right .cn11 .cn12 .cn14 .qqq:checked {
  border: 1px solid #f07c00;
  background-color: #f07c00;
  background-image: url(../images/downloadimg1.svg);
}
.public-windows .container .right .cn11 .cn12 .cn14 .layui-form-select .layui-edge {
  right: 0.25rem;
}
.public-windows .container .right .cn11 .cn12 .cn14 .layui-form-select dl {
  top: 0.57rem;
}
@media (max-width: 991px) {
  .public-windows .container .right .cn11 .cn12 .cn14 .layui-form-select dl {
    top: 0.8rem;
  }
}
.public-windows .container .right .cn15 {
  color: #666666;
  margin: 0.1rem 0 0.15rem;
  vertical-align: middle;
  line-height: 0.3rem;
}
.public-windows .container .right .cn15 input {
  cursor: pointer;
  transform: translateY(0.05rem);
  margin-right: 0.1rem;
  width: 0.2rem;
  height: 0.2rem;
  border: 1px solid #e6e6e6;
  border-radius: 0.05rem;
  transition: all 0.5s;
  background-repeat: no-repeat;
  background-size: 0.08rem 0.06rem;
  background-position: center;
}
@media (max-width: 991px) {
  .public-windows .container .right .cn15 input {
    width: 0.3rem;
    height: 0.3rem;
  }
}
.public-windows .container .right .cn15 input:checked {
  border: 1px solid #f07c00;
  background-color: #f07c00;
  background-image: url(../images/downloadimg1.svg);
}
.public-windows .container .right .cn15 a {
  color: #f07c00;
}
.public-windows .container .right .public-btn2 .public-btn0 {
  justify-content: center;
}
.public-windows.contact-windows2 .container {
  max-width: 800px;
}
.public-windows.contact-windows2 .container .right .cn11 .cn12 {
  width: 48%;
}
.public-windows.contact-windows2 .container .right .cn11 .cn12.cn20 {
  width: 100%;
}
.contact {
  margin-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 0.8rem;
  display: flex;
  position: relative;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contact .f_title {
  padding-bottom: 0.28rem;
}
@media (min-width: 992px) and (max-width: 1280px) {
  .contact .f_title {
    font-size: 0.38rem;
  }
}
@media (min-width: 992px) and (max-width: 1260px) {
  .contact .f_title {
    font-size: 0.32rem;
  }
}
@media (max-width: 991px) {
  .contact .f_title {
    font-size: 0.38rem;
  }
}
@media (max-width: 991px) {
  .contact .lt {
    order: 1;
    margin-top: 0.5rem;
  }
}
.contact .lt .f_jt {
  margin-bottom: 0.75rem;
}
.contact .lt .f_jt .li {
  margin-bottom: 0.5rem;
}
.contact .lt .f_jt .li:nth-child(1) .f_tit {
  color: #f07c00;
}
.contact .lt .f_jt .li:last-child {
  margin-bottom: 0;
}
.contact .lt .f_jt .li .f_name {
  color: #666666;
  margin-bottom: 0.15rem;
  line-height: 1.625em;
}
.contact .lt .f_jt .li .f_tit {
  line-height: 1.3125em;
  color: #000000;
}
.contact .lt .f_jt .li .fontnum {
  color: #f07c00;
}
@media (max-width: 991px) {
  .contact .lt .f_jt .li .fontnum {
    font-size: 0.4rem;
  }
}
.contact .lt .f_conmedia .zcn1 {
  color: #666;
  line-height: 1.625em;
}
.contact .lt .f_conmedia .f_tit {
  color: #000000;
  margin-bottom: 0.24rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.contact .lt .f_conmedia .f_tit .cn7 {
  margin-right: 0.1rem;
  position: relative;
  width: 0.48rem;
  height: 0.48rem;
  transition: all 0.5s;
  background-color: #bfb7a8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.2rem;
}
@media (max-width: 991px) {
  .contact .lt .f_conmedia .f_tit .cn7 {
    width: 0.7rem;
    height: 0.7rem;
  }
}
.contact .lt .f_conmedia .f_tit .cn7:hover {
  background-color: #f07c00;
}
.contact .lt .f_conmedia .f_tit .cn7 .cn8 {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.contact .lt .f_conmedia .f_tit .cn7 .cn8 img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.contact .lt .f_conmedia .f_tit .cn7 .cn9 {
  position: absolute;
  bottom: 100%;
  left: 50%;
  padding-bottom: 0.2rem;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
  width: 100px;
  transform: translateX(-50%);
}
.contact .lt .f_conmedia .f_tit .cn7 .cn9 img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}
.contact .lt .f_conmedia .f_tit .cn7:hover .cn9 {
  opacity: 1;
  visibility: visible;
}
.contact .lt .f_conmedia .f_name {
  color: #222;
}
@media (max-width: 991px) {
  .contact .lt .f_conmedia .f_name {
    font-size: 0.24rem;
  }
}
.contact .lt .f_conmedia .f_tu {
  display: flex;
  flex-wrap: wrap;
}
.contact .lt .f_conmedia .f_tu .li {
  width: 1.5rem;
  margin-right: 0.3rem;
  text-align: center;
  color: #000000;
}
@media (max-width: 991px) {
  .contact .lt .f_conmedia .f_tu .li {
    width: 2rem;
  }
}
.contact .lt .f_conmedia .f_tu .li .img {
  overflow: hidden;
  position: relative;
  margin-bottom: 0.16rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.2rem;
  border: 1px solid #d7d2c8;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .contact .lt .f_conmedia .f_tu .li .img {
    width: 2rem;
    height: 2rem;
  }
}
.contact .lt .f_conmedia .f_tu .li .img img {
  width: 1.1rem;
  height: 1.1rem;
  object-fit: cover;
}
@media (max-width: 991px) {
  .contact .lt .f_conmedia .f_tu .li .img img {
    width: 1.8rem;
    height: 1.8rem;
  }
}
.contact .lt .f_conmedia .f_tu .li .img i {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  animation: runEwm 2s linear infinite;
  -moz-animation: runEwm 2s linear infinite;
  -webkit-animation: runEwm 2s linear infinite;
  -o-animation: runEwm 2s linear infinite;
}
.contact .lt .f_conmedia .f_tu .li .img i img {
  position: relative;
  height: auto;
}
.contact .gt .form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contact .gt .form .int {
  width: 48%;
  width: calc(50% - 0.11rem);
  margin-bottom: 0.26rem;
}
@media (max-width: 767px) {
  .contact .gt .form .int {
    width: 100%;
  }
}
.contact .gt .form .int .box {
  display: flex;
  flex-wrap: wrap;
}
.contact .gt .form .int .box input {
  padding: 0;
  flex-shrink: 0;
  border-radius: 0;
  cursor: pointer;
  background-color: #ffffff;
  margin-right: 0.1rem;
  width: 0.2rem;
  height: 0.2rem;
  border: 1px solid #e6e6e6;
  transition: all 0.5s;
  background-repeat: no-repeat;
  background-size: 0.08rem 0.06rem;
  background-position: center;
}
@media (max-width: 991px) {
  .contact .gt .form .int .box input {
    width: 0.3rem;
    height: 0.3rem;
  }
}
.contact .gt .form .int .box input:focus {
  border: 1px solid #e6e6e6;
  color: #e6e6e6;
}
.contact .gt .form .int .box input:focus::placeholder {
  color: #e6e6e6;
}
.contact .gt .form .int .box input:checked {
  border: 1px solid #f07c00;
  background-color: #f07c00;
  background-image: url(../images/downloadimg1.svg);
}
.contact .gt .form .int .box label {
  padding-right: 0.2rem;
  width: 20%;
  align-items: center;
  display: flex;
  color: #333333;
  margin-bottom: 0.2rem;
  cursor: pointer;
}
@media (max-width: 991px) {
  .contact .gt .form .int .box label {
    width: calc(100% / 3);
  }
}
@media (max-width: 767px) {
  .contact .gt .form .int .box label {
    width: 50%;
  }
}
.contact .gt .form .int .f_name {
  color: #000000;
  margin-bottom: 0.14rem;
}
.contact .gt .form .int .f_name span {
  color: #f07c00;
}
.contact .gt .form .int input,
.contact .gt .form .int select,
.contact .gt .form .int textarea {
  width: 100%;
  color: #666666;
  padding: 0.19rem 0.18rem;
  border-radius: 5px;
  border-radius: 0.06rem;
  background-color: #ffffff;
  border: solid 1px #e6e6e6;
}
.contact .gt .form .int input::-webkit-input-placeholder,
.contact .gt .form .int select::-webkit-input-placeholder,
.contact .gt .form .int textarea::-webkit-input-placeholder {
  color: #999999;
}
.contact .gt .form .int input:-moz-placeholder,
.contact .gt .form .int select:-moz-placeholder,
.contact .gt .form .int textarea:-moz-placeholder {
  color: #999999;
}
.contact .gt .form .int input::-moz-placeholder,
.contact .gt .form .int select::-moz-placeholder,
.contact .gt .form .int textarea::-moz-placeholder {
  color: #999999;
}
.contact .gt .form .int input:-ms-input-placeholder,
.contact .gt .form .int select:-ms-input-placeholder,
.contact .gt .form .int textarea:-ms-input-placeholder {
  color: #999999;
}
.contact .gt .form .int input::placeholder,
.contact .gt .form .int select::placeholder,
.contact .gt .form .int textarea::placeholder {
  transition: all 0.5s;
  color: #999999;
}
.contact .gt .form .int input:focus,
.contact .gt .form .int select:focus,
.contact .gt .form .int textarea:focus {
  border: 1px solid #f07c00;
  color: #f07c00;
}
.contact .gt .form .int input:focus::placeholder,
.contact .gt .form .int select:focus::placeholder,
.contact .gt .form .int textarea:focus::placeholder {
  color: #f07c00;
}
.contact .gt .form .int select {
  background: url(../images/downloadimg1.svg) no-repeat 95% center / 11px auto;
}
.contact .gt .form .int textarea {
  height: 1.2rem;
}
@media (max-width: 991px) {
  .contact .gt .form .int textarea {
    height: 2.4rem;
  }
}
.contact .gt .form .f_textarea {
  width: 100%;
  margin-bottom: 0.15rem;
}
.contact .gt .form .f_text {
  color: #999999;
  margin-bottom: 0.26rem;
  line-height: 1.5;
  width: 100%;
  vertical-align: middle;
  display: flex;
  line-height: 0.3rem;
}
.contact .gt .form .f_text input {
  flex-shrink: 0;
  background-color: #fff;
  cursor: pointer;
  transform: translateY(0.05rem);
  margin-right: 0.1rem;
  width: 0.2rem;
  height: 0.2rem;
  border: 1px solid #e6e6e6;
  border-radius: 0.05rem;
  transition: all 0.5s;
  background-repeat: no-repeat;
  background-size: 0.08rem 0.06rem;
  background-position: center;
}
@media (max-width: 991px) {
  .contact .gt .form .f_text input {
    width: 0.3rem;
    height: 0.3rem;
  }
}
.contact .gt .form .f_text input:checked {
  border: 1px solid #f07c00;
  background-color: #f07c00;
  background-image: url(../images/downloadimg1.svg);
}
.contact .gt .form .f_text a {
  color: #f07c00;
  transition: all 0.4s;
}
.contact .gt .form .f_text a:hover {
  color: #f07c00;
  text-decoration: underline;
}
.contact .gt .form .public-btn2 {
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
  display: flex;
}
.contact .gt .form .public-btn2 .public-btn0 {
  width: calc(50% - 0.12rem);
  justify-content: center;
}
.contact .gt .form .public-btn2 .public-btn0:nth-child(1) {
  background-color: #000;
}
.contact .gt .form .public-btn2 .public-btn0:nth-child(1):hover {
  background-color: transparent;
}
.contact .gt .form .public-btn2 .public-btn0:nth-child(1):hover::before {
  border-color: #000;
}
.contact .gt .form .public-btn2 .public-btn0:nth-child(1):hover .zpcn1 {
  color: #000;
}
.contact .gt .form .f_sub {
  display: inline-block;
  background-color: #0057b4;
  border-radius: 5px;
  color: #ffffff;
  transition: all 0.4s;
  padding: 0.18rem 0.44rem;
  text-align: center;
  min-width: 2rem;
}
.contact .gt .form .f_sub:hover {
  opacity: 0.8;
}
.contact .left {
  width: 45%;
}
@media (max-width: 991px) {
  .contact .left {
    width: 100%;
  }
}
.contact .right {
  width: 45.375%;
}
@media (max-width: 991px) {
  .contact .right {
    width: 100%;
  }
}
.join-box1 {
  margin-top: 2.5rem;
  padding-bottom: 1.22rem;
  position: relative;
}
@media (max-width: 991px) {
  .join-box1 {
    margin-top: 1.2rem;
    padding-bottom: 1.22rem;
  }
}
.join-box1 .bgimg {
  position: absolute;
  left: 0;
  bottom: 0;
}
.join-box1 .bgimg img {
  width: 13.26rem;
}
@media (max-width: 991px) {
  .join-box1 .bgimg img {
    display: none;
  }
}
.join-box1 .bigbox {
  z-index: 2;
  position: relative;
  justify-content: flex-end;
  display: flex;
}
.join-box1 .bigbox .box {
  padding: 0 0.6rem 0 1rem;
  width: 50%;
}
@media (max-width: 991px) {
  .join-box1 .bigbox .box {
    width: 100%;
    padding: 0;
  }
}
.join-box1 .bigbox .box .cn1 {
  display: inline-block;
  min-width: 1.16rem;
  line-height: 0.38rem;
  border-radius: 0.19rem;
  border: 2px solid #f07c00;
  text-align: center;
  color: #f07c00;
  padding: 0 0.2rem;
}
@media (max-width: 991px) {
  .join-box1 .bigbox .box .cn1 {
    border-radius: 0.5rem;
    line-height: 0.6rem;
  }
}
.join-box1 .bigbox .box .cn2 {
  margin: 0.3rem 0 0.4rem;
  color: #222222;
  line-height: 1.16666667em;
}
.join-box1 .bigbox .box .cn3 {
  line-height: 1.55555556em;
  color: #666;
}
.join-box1 .bigbox .box .cn4 {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}
.join-box1 .bigbox .box .cn4 .cn100 {
  margin-top: 0.4rem;
  margin-right: 0.4rem;
}
.join-box2 {
  padding: 0.95rem 0 1.25rem;
  background-color: #Fff;
  position: relative;
}
.join-box2 .bgimg {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #Fff;
}
.join-box2 .cn1 {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #031f23;
  line-height: 1.27777778em;
  margin-bottom: 0.55rem;
}
.join-box2 .box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.join-box2 .box .left {
  width: 49.375%;
  margin-right: 1.25%;
  border-radius: 0.1rem;
}
@media (max-width: 991px) {
  .join-box2 .box .left {
    width: 100%;
    margin-right: 0;
  }
}
.join-box2 .box .left .leftbox {
  width: 100%;
  position: relative;
  border-radius: 0.1rem;
}
.join-box2 .box .left .leftbox::before {
  padding-top: 83.5443038%;
}
.join-box2 .box .left .leftbox .textbox {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding: 0.4rem;
  z-index: 3;
}
.join-box2 .box .left .leftbox .textbox .cn2 {
  color: #Fff;
  line-height: 1.35714286em;
}
.join-box2 .box .left .leftbox .textbox .cn3 {
  margin-top: 0.1rem;
  color: #Fff;
  line-height: 1.55555556em;
}
.join-box2 .box .right {
  width: 49.375%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .join-box2 .box .right {
    width: 100%;
  }
}
.join-box2 .box .right .rightbox {
  width: 48.73417722%;
  border-radius: 0.1rem;
  overflow: hidden;
  position: relative;
  background-color: #f8f6f4;
}
@media (max-width: 991px) {
  .join-box2 .box .right .rightbox {
    margin-top: 0.3rem !important;
  }
}
.join-box2 .box .right .rightbox:nth-child(1) {
  margin-top: 0 !important;
}
@media (max-width: 991px) {
  .join-box2 .box .right .rightbox:nth-child(1) {
    margin-top: 0.3rem !important;
  }
}
.join-box2 .box .right .rightbox:nth-child(2) {
  margin-top: 0 !important ;
}
@media (max-width: 991px) {
  .join-box2 .box .right .rightbox:nth-child(2) {
    margin-top: 0.3rem !important;
  }
}
.join-box2 .box .right .rightbox::before {
  padding-top: 83.11688312%;
}
@media (max-width: 767px) {
  .join-box2 .box .right .rightbox::before {
    padding-top: 120%;
  }
}
.join-box2 .box .right .rightbox .textbox {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 3;
  text-align: center;
  padding: 0.2rem;
  overflow: auto;
  top: 50%;
  transform: translateY(-50%);
}
.join-box2 .box .right .rightbox .textbox .iconimg {
  margin: 0 auto;
  width: 1rem;
  height: 1rem;
  position: relative;
  background-color: #fff;
  border-radius: 50%;
}
.join-box2 .box .right .rightbox .textbox .iconimg .icon1 {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.join-box2 .box .right .rightbox .textbox .iconimg .icon2 {
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  width: 1.6rem;
  max-width: initial;
}
.join-box2 .box .right .rightbox .textbox .cn2 {
  position: relative;
  z-index: 2;
  margin-top: 0.3rem;
  line-height: 1.41666667em;
  color: #031f23;
}
.join-box2 .box .right .rightbox .textbox .cn3 {
  position: relative;
  z-index: 2;
  margin-top: 0.1rem;
  color: #7d7b7b;
  line-height: 1.5em;
}
.join-box3 {
  padding: 1.2rem 0;
  background-color: #f8f6f4;
  position: relative;
}
.join-box3 .bgimg {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #f8f6f4;
}
.join-box3 .box {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.join-box3 .box .left {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  top: 1.2rem;
  width: 30.625%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100vh - 1.2rem);
}
@media (max-width: 991px) {
  .join-box3 .box .left {
    width: 100%;
    height: auto;
    position: relative !important;
    top: 0 !important;
  }
}
.join-box3 .box .left .leftbox1 .cn1 {
  color: #031f23;
  line-height: 1.27777778em;
}
.join-box3 .box .left .leftbox1 .cn2 {
  margin-top: 0.3rem;
  color: #666666;
  line-height: 1.77777778em;
}
@media (max-width: 991px) {
  .join-box3 .box .left .leftbox2 {
    display: none;
  }
}
.join-box3 .box .left .leftbox2 .cn5 {
  width: 0.24rem;
}
.join-box3 .box .left .leftbox2 .cn5 img {
  width: 100%;
}
.join-box3 .box .left .leftbox2 .cn6 {
  margin: 0.2rem 0;
  width: 0.24rem;
  position: relative;
  height: 0.4rem;
}
.join-box3 .box .left .leftbox2 .cn6::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  height: 100%;
  width: 1px;
  background-color: #d0cecc;
}
.join-box3 .box .left .leftbox2 .cn7 {
  width: 0.24rem;
  text-align: center;
  color: #d0cecc;
  line-height: 1em;
}
.join-box3 .box .right {
  width: 55%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .join-box3 .box .right {
    width: 100%;
  }
}
.join-box3 .box .right .rightbox {
  width: 47.72727273%;
  margin-top: 0.4rem;
  border-radius: 0.2rem;
}
.join-box3 .box .right .rightbox:nth-child(even) {
  transform: translateY(2.8rem);
}
.join-box3 .box .right .rightbox::before {
  padding-top: 133.33333333%;
}
.join-box3 .box .right .rightbox .img2 {
  top: initial;
  bottom: 0;
  height: auto;
  opacity: 0;
}
.join-box3 .box .right .rightbox .textbox {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  width: 100%;
  padding: 0.4rem;
}
@media (max-width: 991px) {
  .join-box3 .box .right .rightbox .textbox {
    padding: 0.2rem;
  }
}
.join-box3 .box .right .rightbox .textbox .cn3 {
  color: #Fff;
  line-height: 1.41666667em;
}
.join-box3 .box .right .rightbox .textbox .cn4 {
  margin-top: 0.1rem;
  color: #Fff;
  line-height: 1.625em;
}
@media (max-width: 991px) {
  .join-box3 .box .right .rightbox .textbox .cn4 {
    font-size: 0.24rem;
  }
}
@media (max-width: 991px) {
  .join-box3 .box .right .rightbox .textbox .cn4 br {
    display: none;
  }
}
.join-box3 .box .right .rightbox:hover .img1 {
  transform: scale(1.05);
}
.join-box3 .box .right .rightbox:hover .img2 {
  opacity: 1;
}
.join-box4 {
  padding: 1.15rem 0 1.4rem;
  background-color: #Fff;
  position: relative;
}
@media (max-width: 991px) {
  .join-box4 {
    padding: 1.2rem 0;
  }
}
.join-box4 .bgimg {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #Fff;
}
.join-box4 .cn1 {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #031f23;
  line-height: 1.27777778em;
  margin-bottom: 0.55rem;
}
.join-box4 .box {
  overflow: hidden;
  position: relative;
}
.join-box4 .joinbox4swiper {
  position: relative;
  width: 66.66666667%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .join-box4 .joinbox4swiper {
    width: 90%;
  }
}
.join-box4 .joinbox4swiper .swiper-slide {
  transform: scale(0.75);
  transition: all 0.5s ease-in-out;
}
.join-box4 .joinbox4swiper .swiper-slide.swiper-slide-active {
  transform: scale(1);
}
.join-box4 .joinbox4swiper .swiper-slide.swiper-slide-active .text {
  opacity: 1;
}
.join-box4 .joinbox4swiper .swiper-slide .img {
  border-radius: 0.2rem;
}
.join-box4 .joinbox4swiper .swiper-slide .img::before {
  padding-top: 50%;
}
.join-box4 .joinbox4swiper .swiper-slide .text {
  opacity: 0;
  transition: all 0.5s;
  width: calc(100% - 1.4rem);
}
.join-box4 .joinbox4swiper .swiper-slide .cn2 {
  margin-top: 0.3rem;
  line-height: 0.3rem;
}
.join-box4 .joinbox4swiper .swiper-slide .cn3 {
  line-height: 0.4rem;
}
.swiper-btnbox {
  display: flex;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 5;
}
.swiper-btnleft,
.swiper-btnright {
  width: 0.48rem;
  height: 0.48rem;
  border: 2px solid #f07c00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.5s;
}
@media (max-width: 991px) {
  .swiper-btnleft,
  .swiper-btnright {
    width: 0.6rem;
    height: 0.6rem;
  }
}
.swiper-btnleft svg,
.swiper-btnright svg {
  width: 0.2rem;
  height: 0.2rem;
}
@media (max-width: 991px) {
  .swiper-btnleft svg,
  .swiper-btnright svg {
    width: 0.4rem;
    height: 0.4rem;
  }
}
.swiper-btnleft svg path,
.swiper-btnright svg path {
  transition: all 0.5s;
  fill: #f07c00;
  opacity: 1;
  stroke: none;
}
.swiper-btnleft:hover,
.swiper-btnright:hover {
  background-color: #f07c00;
}
.swiper-btnleft:hover svg path,
.swiper-btnright:hover svg path {
  fill: #Fff;
}
.swiper-btnright {
  margin-left: 0.12rem;
  transform: rotate(180deg);
}
.public-windows99 {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: none;
  overflow: hidden;
}
.public-windows99 .box {
  width: 11.91rem;
  max-width: 90%;
  border-radius: 0.24rem;
  background-color: #Fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
  max-height: 100vh;
}
.public-windows99 .box .box99 {
  padding: 0.35rem 0.65rem 0.8rem;
  max-height: 90vh;
  overflow: auto;
}
@media (max-width: 991px) {
  .public-windows99 .box .box99 {
    max-height: 75vh;
    padding: 0.3rem;
  }
}
@media (max-width: 991px) {
  .public-windows99 .box {
    width: 90%;
  }
}
.public-windows99 .box .cnclose {
  width: 0.48rem;
  height: 0.48rem;
  background-color: #Fff;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 0.2rem);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  transition: all 0.4s;
  cursor: pointer;
}
.public-windows99 .box .cnclose svg {
  width: 50%;
  height: auto;
}
.public-windows99 .box .cnclose svg path {
  fill: #333;
  opacity: 1;
  stroke: none;
  transition: all 0.4s;
}
.public-windows99 .box .cnclose:hover {
  background-color: #f07c00;
}
.public-windows99 .box .cnclose:hover svg path {
  fill: #Fff;
}
.public-windows99 .box .cn1 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.public-windows99 .box .cn1 .cn3 {
  color: #333333;
  line-height: 1.27777778em;
}
.public-windows99 .box .cn1 .cn3a {
  width: 100%;
  display: block;
  color: #999999;
  line-height: 1.71428571em;
  margin-top: 0.1rem;
}
.public-windows99 .box .cn1 .cn3a em {
  font-style: normal;
  color: #f07c00;
}
.public-windows99 .box .layui-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.public-windows99 .box .layui-form .box10 {
  width: 48.82629108%;
}
@media (max-width: 991px) {
  .public-windows99 .box .layui-form .box10 {
    width: 100%;
  }
}
.public-windows99 .box .layui-form .box10 .box11 {
  width: 100%;
}
.public-windows99 .box .layui-form .box10 .box11 .box12 {
  width: 100%;
  height: 1.62rem;
  border-radius: 6px;
  border: solid 1px #ededed;
  position: relative;
  padding: 0.2rem;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .public-windows99 .box .layui-form .box10 .box11 .box12 {
    height: auto;
  }
}
.public-windows99 .box .layui-form .box10 .box11 .box12 .cn30 {
  color: #999999;
  line-height: 1.71428571em;
}
.public-windows99 .box .layui-form .box10 .box11 .box12 .cn30 .cn30b {
  color: #999999;
  line-height: 1.625em;
  display: block;
}
.public-windows99 .box .layui-form .box10 .box11 .box12 .cn31 {
  right: 0.2rem;
  bottom: 0.2rem;
  position: absolute;
  min-width: 1.4rem;
  line-height: 0.46rem;
  background-color: #f07c00;
  border-radius: 0.23rem;
  overflow: hidden;
  color: #Fff;
  padding: 0 0.1rem;
  text-align: center;
}
@media (max-width: 991px) {
  .public-windows99 .box .layui-form .box10 .box11 .box12 .cn31 {
    position: relative;
    right: 0;
    bottom: 0;
    padding: 0 0.2rem;
    line-height: 0.76rem;
    margin: 0.2rem 0 0;
    width: 100%;
  }
}
.public-windows99 .box .layui-form .box10 .box11 .box12 .cn31 span {
  display: block;
  position: relative;
  background-color: #f07c00;
  z-index: 2;
}
.public-windows99 .box .layui-form .box10 .box11 .box12 .cn31 input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 3;
}
.public-windows99 .box .layui-form .box10 .box11 .box12 .cn32 {
  display: none;
  position: absolute;
  background-color: #f8f8f8;
  border-radius: 5px;
  height: 0.44rem;
  bottom: 0.2rem;
  left: 0.2rem;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .public-windows99 .box .layui-form .box10 .box11 .box12 .cn32 {
    width: 100%;
    position: relative;
    bottom: 0;
    left: 0;
    justify-content: flex-start;
    display: none !important;
  }
}
.public-windows99 .box .layui-form .box10 .box11 .box12 .cn32 .zclose {
  position: absolute;
  right: -0.1rem;
  top: 0;
  cursor: pointer;
}
.public-windows99 .box .layui-form .box10 .box11 .box12 .cn32 .zclose img {
  width: 0.2rem;
}
.public-windows99 .box .layui-form .box10 .box11 .box12 .cn32 .cn33 {
  width: 0.33rem;
  margin-right: 0.07rem;
}
.public-windows99 .box .layui-form .box10 .box11 .box12 .cn32 .cn33 img {
  width: 0.33rem;
}
.public-windows99 .box .layui-form .box10 .box11 .box12 .cn32 .cn34 {
  max-width: 3rem;
  padding: 0 0.2rem;
}
.public-windows99 .box .layui-form .box10 .box11 .box12 .cn32 .cn34 .cn35 {
  display: block;
  color: #333333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.public-windows99 .box .layui-form .box10 .box11 .box12 .cn32 .cn34 .cn36 {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.public-windows99 .box .layui-form .box10 .box11 .box12 .cn32 .cn34 .cn36 em {
  font-style: normal;
  color: #999999;
}
.public-windows99 .box .box2 {
  width: 100%;
  margin-top: 0.1rem;
}
.public-windows99 .box .box2.boxyanzhengma .cn6 input {
  padding: 0.15rem 2.13rem 0.15rem 0.2rem;
}
.public-windows99 .box .box2 .cn4 {
  color: #333333;
  padding: 0.1rem 0;
}
.public-windows99 .box .box2 .cn4 .cn5 {
  color: #d10707;
  margin-left: 5px;
}
.public-windows99 .box .box2 .cn6 {
  width: 100%;
  position: relative;
}
.public-windows99 .box .box2 .cn6 input {
  padding: 0.15rem 0.2rem;
  width: 100%;
  border-radius: 6px;
  border: 1px solid #ededed;
  color: #999999;
}
.public-windows99 .box .box2 .cn6 input::placeholder {
  color: #888888;
}
.public-windows99 .box .box2 .cn6 button {
  background-color: #f07c00;
  color: #Fff;
  padding: 0.15rem 0.2rem;
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid #f07c00;
  color: #fff;
}
.public-windows99 .box .box2 .cn6 .yanzhengma {
  position: absolute;
  right: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.73rem;
  height: 0.38rem;
}
.shijianinput {
  background-image: url(../images/qimg86.svg);
  background-position: right 0.2rem center;
  background-repeat: no-repeat;
  background-size: 0.12rem 0.08rem;
}
html .layui-laydate .layui-this,
body .layui-laydate .layui-this {
  background-color: #f07c00 !important;
}
html .layui-laydate-header i:hover,
body .layui-laydate-header i:hover,
html .layui-laydate-header span:hover,
body .layui-laydate-header span:hover {
  color: #f07c00 !important;
}
html .layui-laydate-footer span:hover,
body .layui-laydate-footer span:hover {
  color: #f07c00 !important;
}
html .layui-laydate-footer span[lay-type=date],
body .layui-laydate-footer span[lay-type=date] {
  color: #f07c00 !important;
}
html .layui-laydate .layui-this,
body .layui-laydate .layui-this {
  background-color: #f07c00 !important;
}
html .laydate-day-mark::after,
body .laydate-day-mark::after {
  background-color: #f07c00 !important;
}
.about-box1 {
  padding: 0.8rem 0 1.45rem;
  background-color: #f0ede9;
  position: relative;
}
@media (max-width: 991px) {
  .about-box1 {
    padding: 0.8rem 0 0.6rem;
  }
}
.about-box1 .bgimg {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #f0ede9;
}
.about-box1 .box {
  z-index: 2;
  display: flex;
  position: relative;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about-box1 .box .left {
  width: 47.5%;
}
@media (max-width: 991px) {
  .about-box1 .box .left {
    width: 100%;
  }
}
.about-box1 .box .left .cn2 {
  margin: 0 0 0.4rem;
  color: #222222;
  line-height: 1.16666667em;
}
.about-box1 .box .left .cn3 {
  line-height: 1.55555556em;
  color: #666;
}
.about-box1 .box .left .cn4 {
  display: flex;
  flex-wrap: wrap;
}
.about-box1 .box .left .cn4 .cn100 {
  margin-top: 0.4rem;
  margin-right: 0.4rem;
}
.about-box1 .box .right {
  width: 47.5%;
}
@media (max-width: 991px) {
  .about-box1 .box .right {
    width: 100%;
    margin-top: 0.6rem;
  }
}
.about-box1 .box .right .img {
  border-radius: 0.1rem;
}
.about-box1 .box .right .img::before {
  padding-top: 63.15789474%;
}
.about-box1 .box2 {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .about-box1 .box2 {
    margin-top: 0.6rem;
  }
}
@media (max-width: 767px) {
  .about-box1 .box2 {
    justify-content: space-between;
  }
}
.about-box1 .box2 .box2a {
  background-color: #Fff;
  border-radius: 0.1rem;
  margin-right: 0.2rem;
  margin-top: 0.2rem;
  width: calc((100% - 0.8rem) / 5);
  height: 2rem;
  padding: 0.25rem 0.3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  align-items: flex-start;
  transition: all 0.5s;
}
@media (max-width: 991px) {
  .about-box1 .box2 .box2a {
    width: calc((100% - 0.4rem) / 3);
  }
}
@media (max-width: 767px) {
  .about-box1 .box2 .box2a {
    height: 3rem;
    margin-right: 0 !important;
    width: calc(50% - 0.1rem) !important;
  }
}
.about-box1 .box2 .box2a:nth-child(5n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .about-box1 .box2 .box2a:nth-child(5n) {
    margin-right: 0.2rem;
  }
}
@media (max-width: 991px) {
  .about-box1 .box2 .box2a:nth-child(3n) {
    margin-right: 0;
  }
}
.about-box1 .box2 .box2a .box2b {
  max-width: 100%;
  display: flex;
  position: relative;
  z-index: 2;
}
.about-box1 .box2 .box2a .box2b .cn5 {
  font-size: 0.8rem;
  color: #f07c00;
  transition: all 0.5s;
  line-height: 1em;
}
.about-box1 .box2 .box2a .box2b .cn6 {
  margin-left: 0.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.1rem 0;
}
.about-box1 .box2 .box2a .box2b .cn6 .cn7 {
  line-height: 1em;
  color: #f07c00;
  transition: all 0.5s;
}
.about-box1 .box2 .box2a .box2b .cn6 .cn8 {
  line-height: 1em;
  color: #f07c00;
  transition: all 0.5s;
}
.about-box1 .box2 .box2a .box2c {
  color: #a39c93;
  line-height: 0.42rem;
  border-radius: 0.05rem;
  transition: all 0.5s;
  display: inline-block;
  position: relative;
  z-index: 2;
  max-width: 100%;
}
.about-box1 .box2 .box2a .box2d {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1.36rem;
  height: 1.36rem;
}
.about-box1 .box2 .box2a .box2d img {
  max-width: initial;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.5s;
  height: 1.36rem;
}
.about-box1 .box2 .box2a .box2d .tu1 {
  opacity: 0;
}
.about-box1 .box2 .box2a .box2d .tu2 {
  opacity: 1;
}
.about-box1 .box2 .box2a:hover {
  transform: translateY(-0.5rem);
  background-color: #f07c00;
}
@media (max-width: 991px) {
  .about-box1 .box2 .box2a:hover {
    transform: translateY(0);
  }
}
.about-box1 .box2 .box2a:hover .box2b .cn5 {
  color: #Fff;
}
.about-box1 .box2 .box2a:hover .box2b .cn6 .cn7 {
  color: #Fff;
}
.about-box1 .box2 .box2a:hover .box2b .cn6 .cn8 {
  color: #Fff;
}
.about-box1 .box2 .box2a:hover .box2c {
  background-color: #f29026;
  padding: 0 0.18rem;
  color: #fff;
}
.about-box1 .box2 .box2a:hover .box2d .tu1 {
  opacity: 1;
}
.about-box1 .box2 .box2a:hover .box2d .tu2 {
  opacity: 0;
}
.about-box2 {
  padding: 1.45rem 0 1.3rem;
  background-color: #f0ede9;
  position: relative;
}
@media (max-width: 991px) {
  .about-box2 {
    padding: 0.06rem 0 1.2rem;
  }
}
.about-box2 .bgimg {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #f0ede9;
}
.about-box2 .aboutbox1 {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.about-box2 .aboutbox1 .cn0 {
  color: #222;
}
.about-box2 .aboutbox2 {
  margin-top: 0.6rem;
  position: relative;
  overflow: hidden;
}
.about-box2 .aboutbox2 .aboutbox2swiper {
  position: relative;
  width: 32.5%;
}
@media (max-width: 991px) {
  .about-box2 .aboutbox2 .aboutbox2swiper {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .about-box2 .aboutbox2 .aboutbox2swiper {
    width: 100%;
  }
}
.about-box2 .aboutbox2 .aboutbox2swiper .swiper-slide {
  overflow: auto;
  height: 3.4rem;
  background-color: #Fff;
  padding: 0.35rem 0.4rem;
  border-radius: 0.1rem;
}
@media (max-width: 1260px) {
  .about-box2 .aboutbox2 .aboutbox2swiper .swiper-slide {
    height: 4rem;
  }
}
.about-box2 .aboutbox2 .aboutbox2swiper .swiper-slide .box2 .cn1 {
  color: #222222;
  line-height: 1.27777778em;
  transition: all 0.5s;
}
.about-box2 .aboutbox2 .aboutbox2swiper .swiper-slide .box2 .cn2 {
  margin-top: 0.3rem;
}
.about-box2 .aboutbox2 .aboutbox2swiper .swiper-slide .box2 .cn2 .cn3 {
  transition: all 0.5s;
  margin-bottom: 0.1rem;
  line-height: 1.44444444em;
}
.about-box2 .aboutbox2 .aboutbox2swiper .swiper-slide.swiper-slide-active {
  background-color: #f07c00;
}
.about-box2 .aboutbox2 .aboutbox2swiper .swiper-slide.swiper-slide-active .box2 .cn1 {
  color: #Fff;
}
.about-box2 .aboutbox2 .aboutbox2swiper .swiper-slide.swiper-slide-active .box2 .cn2 .cn3 {
  color: rgba(255, 255, 255, 0.75);
}
.about-box2 .aboutbox2swiper2 {
  margin-top: 0.3rem;
  position: relative;
  overflow: hidden;
}
.about-box2 .aboutbox2swiper2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0.08rem;
  background-color: #e6e3e0;
  border-radius: 0.05rem;
}
.about-box2 .aboutbox2swiper2 em {
  border-radius: 0.05rem;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  transition: all 0.5s;
  height: 0.08rem;
  background-image: linear-gradient(90deg, #f1d5ba 0%, #f08300 100%);
}
.about-box2 .aboutbox2swiper2 .swiper-slide {
  cursor: pointer;
}
.about-box2 .aboutbox2swiper2 .swiper-slide .dian {
  width: 0.08rem;
  height: 0.08rem;
  background-color: #fff;
  border-radius: 50%;
  margin: 0 auto;
}
.about-box2 .aboutbox2swiper2 .swiper-slide .year {
  margin-top: 0.15rem;
  text-align: center;
  color: #999;
  line-height: 0.3rem;
  transition: all 0.5s;
}
.about-box2 .aboutbox2swiper2 .swiper-slide.swiper-slide-thumb-active .year {
  color: #f07c00;
}
.about-box3 {
  background-color: #Fff;
  padding: 1.3rem 0 1.6rem;
  background-color: #f0ede9;
  position: relative;
  width: 100%;
}
@media (max-width: 991px) {
  .about-box3 {
    padding: 1.2rem 0;
  }
}
.about-box3 .bgimg {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.about-box3 .cn1 {
  position: relative;
  color: #222222;
  line-height: 1.27777778em;
}
.about-box3 .box {
  justify-content: space-between;
  flex-wrap: wrap;
  display: flex;
  margin-top: 0.6rem;
}
.about-box3 .box .left {
  width: 46.25%;
}
@media (max-width: 991px) {
  .about-box3 .box .left {
    width: 100%;
  }
}
.about-box3 .box .left .aboutbox3swiper {
  overflow: hidden;
  height: 5.3rem;
  padding-left: 0.45rem;
  position: relative;
}
@media (max-width: 991px) {
  .about-box3 .box .left .aboutbox3swiper {
    height: auto;
    padding-left: 0;
    padding-bottom: 0.3rem;
  }
}
.about-box3 .box .left .aboutbox3swiper .swiper-slide {
  padding: 0.1rem 0 0;
  height: 1.06rem;
  cursor: pointer;
}
@media (max-width: 991px) {
  .about-box3 .box .left .aboutbox3swiper .swiper-slide {
    height: auto;
  }
}
.about-box3 .box .left .aboutbox3swiper .swiper-slide.swiper-slide-active .cn2 {
  color: #f07c00;
}
.about-box3 .box .left .aboutbox3swiper .swiper-slide.swiper-slide-active .cn3 {
  color: #222222;
}
.about-box3 .box .left .aboutbox3swiper .swiper-slide.swiper-slide-active .cn4::before {
  animation: lineani 5s linear 1 forwards;
}
.about-box3 .box .left .aboutbox3swiper .swiper-slide .cn2 {
  color: #999999;
  transition: all 0.5s;
  line-height: 1.625em;
}
.about-box3 .box .left .aboutbox3swiper .swiper-slide .cn3 {
  color: #666666;
  transition: all 0.5s;
  line-height: 1.41666667em;
  margin: 0 0 0.15rem;
}
@media (max-width: 991px) {
  .about-box3 .box .left .aboutbox3swiper .swiper-slide .cn3 {
    font-size: 0.4rem;
  }
}
.about-box3 .box .left .aboutbox3swiper .swiper-slide .cn4 {
  width: 100%;
  height: 1px;
  position: relative;
  background-color: #e5e5e5;
}
@media (max-width: 991px) {
  .about-box3 .box .left .aboutbox3swiper .swiper-slide .cn4 {
    display: none;
  }
}
.about-box3 .box .left .aboutbox3swiper .swiper-slide .cn4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #f07c00;
}
.about-box3 .box .left .aboutbox3swiper .swiper-slide .cn5 {
  display: none;
}
@media (max-width: 991px) {
  .about-box3 .box .left .aboutbox3swiper .swiper-slide .cn5 {
    display: block;
  }
}
.about-box3 .box .left .aboutbox3swiper .swiper-slide .cn5::before {
  padding-top: 66.66666667%;
}
.about-box3 .box .left .aboutbox3swiper .swiper-pagination {
  position: absolute;
}
@media (max-width: 991px) {
  .about-box3 .box .left .aboutbox3swiper .swiper-pagination {
    bottom: 0;
    left: 0;
    top: initial;
  }
}
.about-box3 .box .left .aboutbox3swiper .swiper-pagination-progressbar {
  width: 0.06rem;
  border-radius: 0.03rem;
  overflow: hidden;
  background-color: #eee;
}
@media (max-width: 991px) {
  .about-box3 .box .left .aboutbox3swiper .swiper-pagination-progressbar {
    width: 100%;
  }
}
.about-box3 .box .left .aboutbox3swiper .swiper-pagination-progressbar-fill {
  background-color: #f07c00;
  border-radius: 0.03rem;
  overflow: hidden;
}
.about-box3 .box .right {
  width: 35.625%;
  padding-top: 0.9rem;
}
@media (max-width: 991px) {
  .about-box3 .box .right {
    width: 100%;
    display: none;
  }
}
.about-box3 .box .right .img::before {
  padding-top: 66.66666667%;
}
.about-box3 .box .right .img img {
  opacity: 0;
}
.about-box3 .box .right .img img.on {
  opacity: 1;
}
@keyframes lineani {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.about-box4 {
  background-color: #f5f5f5;
  padding: 1.15rem 0 1.6rem;
  position: relative;
  overflow: hidden;
}
.about-box4 .bgimg {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
}
.about-box4 .bgimg img {
  position: absolute;
  width: 100%;
  bottom: 0;
}
.about-box4 .cn1 {
  position: relative;
  color: #222222;
  line-height: 1.27777778em;
  text-align: center;
}
.about-box4 .cn2 {
  position: relative;
  color: #666666;
  text-align: center;
  line-height: 1.5em;
  max-width: 8.6rem;
  margin: 0.4rem auto 0;
}
@media (max-width: 991px) {
  .about-box4 .cn2 {
    width: 90%;
  }
}
.about-box4 .public-title-box {
  max-width: 90%;
  margin: 0 auto;
}
.about-box4 .indexbox4swiper {
  max-width: 1920px;
  margin: 0 auto;
  padding: 1.5rem 0 1rem;
  position: relative;
}
@media (max-width: 1580px) {
  .about-box4 .indexbox4swiper {
    padding: 1.7rem 0;
  }
}
@media (max-width: 991px) {
  .about-box4 .indexbox4swiper {
    padding: 0.6rem 0;
  }
}
.about-box4 .indexbox4swiper .swiper-slide {
  width: 1.2rem;
}
.about-box4 .indexbox4swiper .swiper-slide .img {
  width: 1.2rem;
  background-color: #Fff;
  border-radius: 50%;
}
.case-box1 {
  padding-top: 0.7rem;
  padding-bottom: 1.2rem;
}
.case-box1 .cn1 {
  color: #222222;
  line-height: 1.27777778em;
}
.case-box1 .cn2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.case-box1 .cn2 .cn3 {
  width: 47.5%;
  display: block;
  margin-top: 1.4rem;
  position: relative;
}
.case-box1 .cn2 .cn3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(100% + 0.8rem);
}
@media (max-width: 767px) {
  .case-box1 .cn2 .cn3 {
    width: 100%;
  }
}
.case-box1 .cn2 .cn3:nth-child(1) {
  margin-top: 0.55rem;
}
.case-box1 .cn2 .cn3:nth-child(2) {
  margin-top: 0.55rem;
}
@media (max-width: 991px) {
  .case-box1 .cn2 .cn3:nth-child(2) {
    margin-top: 1.4rem;
  }
}
.case-box1 .cn2 .cn3 .img {
  border-radius: 0.1rem;
}
.case-box1 .cn2 .cn3 .img::before {
  padding-top: 66.66666667%;
}
.case-box1 .cn2 .cn3 .text {
  z-index: 3;
  background-color: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.8rem;
  width: 100%;
  height: 1rem;
  border-radius: 0.1rem;
  padding: 0 0.5rem 0 0.4rem;
  transition: all 0.5s;
  overflow: hidden;
}
.case-box1 .cn2 .cn3 .text .cn4 {
  margin: 0.3rem 0;
  line-height: 0.4rem;
  color: #222222;
  width: calc(100% - 1.2rem);
}
.case-box1 .cn2 .cn3 .text .cn5 {
  color: #999999;
  width: calc(100% - 1.2rem);
  line-height: 0.22rem;
  height: 0.44rem;
  opacity: 0;
  transform: translateY(0.3rem);
  transition: opacity 0.5s, transform 0.5s;
}
@media (max-width: 1260px) {
  .case-box1 .cn2 .cn3 .text .cn5 {
    line-height: 0.36rem;
    height: 0.72rem;
  }
}
.case-box1 .cn2 .cn3 .text .cn6 {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.4rem;
  height: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0ece6;
  border-radius: 50%;
  transition: all 0.5s;
}
.case-box1 .cn2 .cn3 .text .cn6 svg {
  width: 50%;
  height: auto;
}
.case-box1 .cn2 .cn3 .text .cn6 svg path {
  fill: #ab9f8c;
  opacity: 1;
  stroke: none;
  transition: all 0.5s;
}
.case-box1 .cn2 .cn3:hover .img img {
  transform: scale(1.05);
}
.case-box1 .cn2 .cn3:hover .text {
  height: 1.6rem;
  width: 92.1%;
}
@media (max-width: 1260px) {
  .case-box1 .cn2 .cn3:hover .text {
    height: 1.8rem;
  }
}
.case-box1 .cn2 .cn3:hover .text .cn4 {
  margin: 0.35rem 0 0.1rem;
}
.case-box1 .cn2 .cn3:hover .text .cn5 {
  opacity: 1;
  transform: translateY(0);
}
.case-box1 .cn2 .cn3:hover .text .cn6 {
  width: 0.52rem;
  height: 0.52rem;
  background-color: #f07c00;
}
.case-box1 .cn2 .cn3:hover .text .cn6 svg path {
  fill: #Fff;
}
.join-list-public .pbox {
  margin-bottom: 0.3rem;
  background-color: #ffffff;
  border-radius: 0.1rem;
  width: 100%;
}
.join-list-public .pbox.on .pbox2 {
  box-shadow: 0px 17px 20px 0px rgba(0, 0, 0, 0.03);
}
.join-list-public .pbox.on .pbox2 .pbox2b .pcn4 span:nth-child(1) {
  opacity: 0;
}
.join-list-public .pbox.on .pbox2 .pbox2b .pcn4 span:nth-child(2) {
  opacity: 1;
}
.join-list-public .pbox.on .pbox2 .pbox2b .pcn5 span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(90deg);
}
.join-list-public .pbox1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.36rem 0 0.3rem;
  border-bottom: 1px solid #e5e5e5;
  margin: 0 0.35rem;
}
.join-list-public .pbox1 .pbox1a {
  display: flex;
  width: 5.6rem;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .join-list-public .pbox1 .pbox1a {
    width: 60%;
  }
}
.join-list-public .pbox1 .pcn1 {
  color: #333333;
}
.join-list-public .pbox1 .pcn2 {
  margin-left: 0.2rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: #666666;
}
@media (max-width: 767px) {
  .join-list-public .pbox1 .pcn2 {
    display: none;
  }
}
.join-list-public .pbox1 .pcn2 img {
  margin-right: 0.1rem;
  width: 0.2rem;
}
.join-list-public .pbox1 .public-btn2 {
  flex-shrink: 0;
}
.join-list-public .pbox1 .public-btn2 .public-btn0 {
  justify-content: center;
}
.join-list-public .pbox2 {
  padding: 0.3rem 0.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s;
}
.join-list-public .pbox2 .pbox2a {
  display: flex;
}
.join-list-public .pbox2 .pbox2a .pcn3 {
  border-radius: 0.04rem;
  background-color: #fef8f2;
  text-align: center;
  color: #f07c00;
  margin-right: 0.1rem;
  padding: 0.05rem 0.19rem;
}
.join-list-public .pbox2 .pbox2b {
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.join-list-public .pbox2 .pbox2b .pcn4 {
  position: relative;
  transition: all 0.5s;
}
.join-list-public .pbox2 .pbox2b .pcn4 span {
  color: #999999;
  transition: all 0.5s;
}
.join-list-public .pbox2 .pbox2b .pcn4 span:nth-child(1) {
  opacity: 1;
}
.join-list-public .pbox2 .pbox2b .pcn4 span:nth-child(2) {
  left: 0;
  opacity: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
.join-list-public .pbox2 .pbox2b .pcn5 {
  margin-left: 0.1rem;
  width: 20px;
  height: 20px;
  border: 1px solid #999;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.5s;
  position: relative;
}
.join-list-public .pbox2 .pbox2b .pcn5 span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 1px;
  transition: all 0.5s;
  background-color: #999;
}
.join-list-public .pbox2 .pbox2b .pcn5 span:nth-child(2) {
  width: 1px;
  height: 9px;
}
.join-list-public .pbox2 .pbox2b:hover .pcn4 span {
  color: #f07c00;
}
.join-list-public .pbox2 .pbox2b:hover .pcn5 {
  border: 1px solid #f07c00;
}
.join-list-public .pbox2 .pbox2b:hover .pcn5 span {
  background-color: #f07c00;
}
.join-list-public .pbox3 {
  display: none;
  padding: 0.35rem;
}
.join-list-public .pbox3 .pbox3a {
  padding: 0.35rem 0;
  border-bottom: 1px dashed #e5e5e5;
}
.join-list-public .pbox3 .pbox3a:nth-child(1) {
  padding-top: 0;
}
.join-list-public .pbox3 .pbox3a:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.join-list-public .pbox3 .pbox3a .pcn6 {
  color: #333333;
  line-height: 1.5em;
}
.join-list-public .pbox3 .pbox3a .pcn7 {
  margin-top: 0.2rem;
  color: #666666;
  line-height: 1.875em;
}
.public-upload {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.public-upload .public-upload-bigbox {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  position: relative;
}
.public-upload .public-upload-box {
  max-width: 90%;
  max-height: 80%;
  width: 6.5rem;
  background-color: #Fff;
  border-radius: 0.24rem;
  padding: 0.35rem 0.65rem 0.65rem;
  position: relative;
}
@media (max-width: 991px) {
  .public-upload .public-upload-box {
    padding: 0.35rem;
  }
}
.public-upload .public-upload-box .public-upload-top .pcn1 {
  color: #000000;
  line-height: 1.27777778em;
}
.public-upload .public-upload-box .public-upload-top .pcn2 {
  margin-top: 0.05rem;
  color: #999999;
  line-height: 1.71428571em;
}
.public-upload .public-upload-box .public-upload-content {
  margin-top: 0.25rem;
  border: 1px dashed #cccccc;
  border-radius: 0.06rem;
  height: 3.3rem;
  position: relative;
}
@media (max-width: 991px) {
  .public-upload .public-upload-box .public-upload-content {
    height: 4.3rem;
  }
}
.public-upload .public-upload-box .public-upload-content .pcn3 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1.8rem;
  height: 1.2rem;
  border-radius: 0.06rem;
  border: 1px solid #f07c00;
  background-color: #fdefe0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 991px) {
  .public-upload .public-upload-box .public-upload-content .pcn3 {
    width: 3rem;
    height: 2rem;
    top: 40%;
  }
}
.public-upload .public-upload-box .public-upload-content .pcn3 form {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 5;
  height: 100%;
}
.public-upload .public-upload-box .public-upload-content .pcn3 form input {
  width: 100%;
  height: 100%;
  opacity: 0;
}
.public-upload .public-upload-box .public-upload-content .pcn3 .pcn3a {
  text-align: center;
  width: 100%;
}
.public-upload .public-upload-box .public-upload-content .pcn3 .pcn3a .pcn3b {
  margin: 0 auto;
  height: 0.4rem;
}
.public-upload .public-upload-box .public-upload-content .pcn3 .pcn3a .pcn3b img {
  height: 0.4rem;
}
.public-upload .public-upload-box .public-upload-content .pcn3 .pcn3a .pcn3c {
  text-align: center;
  max-width: 100%;
  padding: 0 0.1rem;
  color: #f07c00;
  line-height: 1.625em;
  margin-top: 0.05rem;
}
.public-upload .public-upload-box .public-upload-content .pcn4 {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  bottom: 0.25rem;
  color: #999999;
  line-height: 1.625em;
  padding: 0 0.2rem;
}
.public-upload .public-upload-box .cnclose {
  width: 0.48rem;
  height: 0.48rem;
  background-color: #Fff;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 0.2rem);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  transition: all 0.4s;
  cursor: pointer;
}
.public-upload .public-upload-box .cnclose svg {
  width: 50%;
  height: auto;
}
.public-upload .public-upload-box .cnclose svg path {
  fill: #333;
  opacity: 1;
  stroke: none;
  transition: all 0.4s;
}
.public-upload .public-upload-box .cnclose:hover {
  background-color: #f07c00;
}
.public-upload .public-upload-box .cnclose:hover svg path {
  fill: #Fff;
}
.index-aside {
  position: fixed;
  right: 0.6rem;
  bottom: 0.6rem;
  z-index: 999;
}
@media (max-width: 991px) {
  .index-aside {
    right: 0.2rem;
  }
}
.index-aside .asidebox1 {
  cursor: pointer;
  position: relative;
  margin-top: 0.2rem;
}
.index-aside .asidebox1:nth-child(1) .asidexbox1a {
  width: 3rem;
}
.index-aside .asidebox1:nth-child(1) .asidexbox1a .asidebox1b {
  width: 2.8rem;
}
.index-aside .asidebox1.backtop .icon {
  background-color: #f07c00;
}
.index-aside .asidebox1 .icon {
  width: 0.6rem;
  height: 0.6rem;
  background-color: #Fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .index-aside .asidebox1 .icon {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.index-aside .asidebox1 .icon img {
  width: 50%;
  height: auto;
}
.index-aside .asidebox1 .asidexbox1a {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: 2.4rem;
  opacity: 0;
  transition: all 0.5s;
  visibility: hidden;
}
@media (max-width: 991px) {
  .index-aside .asidebox1 .asidexbox1a {
    width: 3.2rem;
  }
}
.index-aside .asidebox1 .asidexbox1a .asidebox1b {
  background-color: #Fff;
  border-radius: 0.1rem;
  width: 2.2rem;
  padding: 0.2rem;
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.1));
  -webkit-filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.1));
  position: relative;
  display: flex;
}
@media (max-width: 991px) {
  .index-aside .asidebox1 .asidexbox1a .asidebox1b {
    width: 3rem;
  }
}
.index-aside .asidebox1 .asidexbox1a .asidebox1b::before {
  content: "";
  position: absolute;
  left: calc(100% - 0.05rem);
  top: 50%;
  width: 0.1rem;
  height: 0.1rem;
  background-color: #fff;
  transform: translateY(-50%) rotate(45deg);
}
.index-aside .asidebox1 .asidexbox1a .asidebox1b .icon2 {
  width: 0.2rem;
  height: 30px;
  display: flex;
  align-items: center;
  margin-right: 0.12rem;
}
@media (max-width: 991px) {
  .index-aside .asidebox1 .asidexbox1a .asidebox1b .icon2 {
    width: 0.3rem;
  }
}
.index-aside .asidebox1 .asidexbox1a .asidebox1b .text .text1 {
  color: #222222;
  line-height: 30px;
}
.index-aside .asidebox1 .asidexbox1a .asidebox1b .text .text2 {
  display: flex;
  align-content: center;
  color: #f07c00;
}
.index-aside .asidebox1 .asidexbox1a .asidebox1b .text .text2 img {
  margin-left: 0.1rem;
}
.index-aside .asidebox1:hover .asidexbox1a {
  opacity: 1;
  visibility: visible;
}
.caseinfo-box1 {
  padding-top: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.caseinfo-box1 .left {
  width: 27.5%;
  padding-right: 0.3rem;
  position: sticky;
  left: 0;
  top: 1.2rem;
}
@media (max-width: 991px) {
  .caseinfo-box1 .left {
    position: relative;
    top: 0;
    width: 100%;
    padding-right: 0;
    text-align: center;
  }
}
.caseinfo-box1 .left .cn1 {
  color: #222;
  line-height: 1.27777778em;
}
.caseinfo-box1 .left .cn2 {
  margin-top: 1.05rem;
  width: 0.03rem;
  height: 1rem;
  background-color: #d4d0cc;
  position: relative;
  border-radius: 0.02rem;
}
@media (max-width: 991px) {
  .caseinfo-box1 .left .cn2 {
    display: none;
  }
}
.caseinfo-box1 .left .cn2 span {
  border-radius: 0.02rem;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0.3rem;
  background-color: #f07c00;
}
.caseinfo-box1 .right {
  width: 70%;
}
@media (max-width: 991px) {
  .caseinfo-box1 .right {
    width: 100%;
    margin-top: 0.6rem;
  }
}
.caseinfo-box1 .right .cn3 {
  color: #666666;
  line-height: 1.8em;
}
.caseinfo-box1 .right .cn3 span {
  color: #f07c00;
  font-weight: bold;
  text-decoration: underline;
}
.caseinfo-box1 .right .cn4 {
  margin-top: 0.3rem;
}
.caseinfo-box1 .right .cn4 .cn5 {
  margin-top: 0.2rem;
  background-color: #eae7e3;
  border-radius: 0.1rem;
  border: 1px solid #d4d0cc;
  padding: 0.3rem 1.4rem 0.3rem 0.3rem;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  transition: all 0.5s;
}
@media (max-width: 991px) {
  .caseinfo-box1 .right .cn4 .cn5 {
    padding: 0.3rem;
  }
}
.caseinfo-box1 .right .cn4 .cn5.on {
  border: 1px solid #f07c00;
  background-color: #f0dcc6;
}
.caseinfo-box1 .right .cn4 .cn5.on .cn6 {
  opacity: 0;
}
.caseinfo-box1 .right .cn4 .cn5.on .cn7 span {
  background-color: #f07c00;
}
.caseinfo-box1 .right .cn4 .cn5.on .cn7 span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(90deg);
}
.caseinfo-box1 .right .cn4 .cn5.on .cn8 {
  transform: translateY(-0.3rem);
  opacity: 1;
}
.caseinfo-box1 .right .cn4 .cn5 .cn6 {
  color: #222222;
  line-height: 0.3rem;
}
.caseinfo-box1 .right .cn4 .cn5 .cn7 {
  position: absolute;
  right: 0.3rem;
  top: calc(0.3rem + ((0.3rem - 14px) / 2));
  width: 14px;
  height: 14px;
}
.caseinfo-box1 .right .cn4 .cn5 .cn7 span {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 2px;
  background-color: #b9b4b0;
  transition: all 0.5s;
}
.caseinfo-box1 .right .cn4 .cn5 .cn7 span:nth-child(2) {
  width: 2px;
  height: 14px;
}
.caseinfo-box1 .right .cn4 .cn5 .cn8 {
  display: none;
  transform: translateY(0);
  opacity: 0;
}
.caseinfo-box1 .right .cn4 .cn5 .cn8 .cn8a {
  display: flex;
}
@media (max-width: 991px) {
  .caseinfo-box1 .right .cn4 .cn5 .cn8 .cn8a {
    flex-wrap: wrap;
  }
}
.caseinfo-box1 .right .cn4 .cn5 .cn8 .cn8a .cn9 {
  width: 3.2rem;
  flex-shrink: 0;
  color: #f07c00;
  padding-right: 0.2rem;
}
@media (max-width: 991px) {
  .caseinfo-box1 .right .cn4 .cn5 .cn8 .cn8a .cn9 {
    font-size: 0.4rem;
    margin-bottom: 0.2rem;
  }
}
.caseinfo-box1 .right .cn4 .cn5 .cn8 .cn8a .cn10 {
  width: 100%;
}
.caseinfo-box1 .right .cn4 .cn5 .cn8 .cn8a .cn10 .cn11 {
  color: #f07c00;
  line-height: 1.66666667em;
}
.caseinfo-box1 .right .cn4 .cn5 .cn8 .cn8a .cn10 .cn12 {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.4rem;
}
.caseinfo-box1 .right .cn4 .cn5 .cn8 .cn8a .cn10 .cn12 .cn13 {
  margin-top: 0.1rem;
  margin-right: 0.1rem;
  padding: 0.1rem 0;
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid #fff;
  border-radius: 0.05rem;
  display: flex;
  flex-direction: column;
  width: 1.4rem;
  padding: 0.2rem 0.1rem;
}
@media (max-width: 991px) {
  .caseinfo-box1 .right .cn4 .cn5 .cn8 .cn8a .cn10 .cn12 .cn13 {
    width: 2.1rem;
    padding: 0.2rem;
  }
}
@media (max-width: 767px) {
  .caseinfo-box1 .right .cn4 .cn5 .cn8 .cn8a .cn10 .cn12 .cn13 {
    width: 1.9rem;
    padding: 0.2rem 0.1rem;
  }
}
.caseinfo-box1 .right .cn4 .cn5 .cn8 .cn8a .cn10 .cn12 .cn13 .cn14 {
  text-align: center;
  height: 0.3rem;
}
@media (max-width: 991px) {
  .caseinfo-box1 .right .cn4 .cn5 .cn8 .cn8a .cn10 .cn12 .cn13 .cn14 {
    height: 0.45rem;
  }
}
.caseinfo-box1 .right .cn4 .cn5 .cn8 .cn8a .cn10 .cn12 .cn13 .cn14 img {
  width: auto;
  height: 0.3rem;
}
@media (max-width: 991px) {
  .caseinfo-box1 .right .cn4 .cn5 .cn8 .cn8a .cn10 .cn12 .cn13 .cn14 img {
    height: 0.45rem;
  }
}
.caseinfo-box1 .right .cn4 .cn5 .cn8 .cn8a .cn10 .cn12 .cn13 .cn15 {
  color: #222222;
  text-align: center;
  padding: 0 0.05rem;
  margin-top: 0.1rem;
}
.caseinfo-box2 {
  padding-top: 1.45rem;
}
.caseinfo-box2 .cn0 {
  text-align: center;
  color: #222222;
  line-height: 1.27777778em;
}
.caseinfo-box2 .bigbox {
  margin-top: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.caseinfo-box2 .box {
  width: 47.5%;
}
@media (max-width: 991px) {
  .caseinfo-box2 .box {
    width: 100%;
  }
}
.caseinfo-box2 .box:nth-child(2) {
  margin-top: 1.7rem;
}
@media (max-width: 991px) {
  .caseinfo-box2 .box:nth-child(2) {
    margin-top: 0.7rem;
  }
}
.caseinfo-box2 .box .box2 {
  background-color: #Fff;
  border-radius: 0.1rem;
  margin-top: 0.6rem;
  padding: 0.6rem;
  overflow: hidden;
  transition: all 0.5s;
  position: relative;
  min-height: 4.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.caseinfo-box2 .box .box2:hover {
  padding: 0.3rem 0.6rem 0.6rem;
  background-color: #f07c00;
}
.caseinfo-box2 .box .box2:hover .box2a {
  transform: translateX(-1rem);
}
.caseinfo-box2 .box .box2:hover .box2a .cn3 {
  line-height: 0.8rem;
  display: initial;
  background: transparent -webkit-linear-gradient(left, #354b9c, #354b9c) no-repeat 0 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 0 100%;
  color: white;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.25);
}
.caseinfo-box2 .box .box2:hover .box2a .cn4 .cn5 {
  width: 0.8rem;
  object-fit: cover;
}
.caseinfo-box2 .box .box2:hover .box2a .cn4 .cn5 img {
  width: 0.8rem;
  height: 0.8rem;
}
.caseinfo-box2 .box .box2:hover .box2a .cn4 .cn5 .tu1 {
  display: none;
}
.caseinfo-box2 .box .box2:hover .box2a .cn4 .cn5 .tu2 {
  display: block;
}
.caseinfo-box2 .box .box2:hover .box2a .cn4 .cn6 {
  opacity: 1;
}
.caseinfo-box2 .box .box2:hover .box2b .box2b1 .cn1 {
  color: #Fff;
}
.caseinfo-box2 .box .box2:hover .box2b .box2b1 .cn1::before {
  background-color: #fff;
}
.caseinfo-box2 .box .box2:hover .box2b .box2b1 .cn2 {
  color: #Fff;
}
.caseinfo-box2 .box .box2:hover .bgimg {
  right: 0;
}
.caseinfo-box2 .box .box2 .bgimg {
  position: absolute;
  right: -100%;
  bottom: 0;
  height: 2.5rem;
  z-index: 5;
  transition: all 0.5s;
}
.caseinfo-box2 .box .box2 .bgimg img {
  height: 2.5rem;
  opacity: 0.15;
}
.caseinfo-box2 .box .box2 .box2a {
  display: flex;
  justify-content: space-between;
  transition: all 0.5s;
  position: relative;
  z-index: 10;
}
.caseinfo-box2 .box .box2 .box2a .cn3 {
  color: #ede9e3;
  line-height: 0.6rem;
  transition: all 0.5s;
}
.caseinfo-box2 .box .box2 .box2a .cn4 {
  position: relative;
  transition: all 0.5s;
}
.caseinfo-box2 .box .box2 .box2a .cn4 .cn5 {
  display: block;
  width: 1.08rem;
  transition: all 0.5s;
  height: 1.08rem;
}
.caseinfo-box2 .box .box2 .box2a .cn4 .cn5 img {
  width: 100%;
  object-fit: cover;
}
.caseinfo-box2 .box .box2 .box2a .cn4 .cn5 .tu1 {
  display: block;
}
.caseinfo-box2 .box .box2 .box2a .cn4 .cn5 .tu2 {
  opacity: 0.5;
  display: none;
}
.caseinfo-box2 .box .box2 .box2a .cn4 .cn6 {
  color: #f4a367;
  white-space: nowrap;
  position: absolute;
  left: calc(100% + 0.25rem);
  top: 0;
  line-height: 0.8rem;
  opacity: 0;
  transition: all 0.5s;
}
.caseinfo-box2 .box .box2 .box2b {
  position: relative;
  z-index: 10;
  margin-top: 0.5rem;
}
.caseinfo-box2 .box .box2 .box2b .box2b1 {
  margin-top: 0.3rem;
}
.caseinfo-box2 .box .box2 .box2b .box2b1:nth-child(1) {
  margin-top: 0;
}
.caseinfo-box2 .box .box2 .box2b .box2b1 .cn1 {
  color: #f07c00;
  position: relative;
  line-height: 0.34rem;
  padding-left: 0.3rem;
  transition: all 0.5s;
}
.caseinfo-box2 .box .box2 .box2b .box2b1 .cn1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #f07c00;
  top: calc((0.34rem - 6px) / 2);
  transition: all 0.5s;
}
.caseinfo-box2 .box .box2 .box2b .box2b1 .cn2 {
  transition: all 0.5s;
  margin-top: 0.1rem;
  padding-left: 0.3rem;
  color: #999999;
  line-height: 1.625em;
}
.caseinfo-box2 .box .box2:nth-child(1) {
  margin-top: 0;
}
.caseinfo-box3 {
  padding-top: 1.55rem;
}
.caseinfo-box3 .cn1 {
  text-align: center;
  color: #222222;
  line-height: 1.27777778em;
}
.caseinfo-box3 .caseinfo3swiper {
  margin-top: 0.55rem;
  position: relative;
  overflow: hidden;
}
.caseinfo-box3 .caseinfo3swiper .swiper-slide {
  height: auto;
  background-color: #Fff;
  border-radius: 0.1rem;
  padding: 0.8rem 0;
}
.caseinfo-box3 .caseinfo3swiper .swiper-slide .img {
  background-color: #fef4e8;
  width: 0.8rem;
  border-radius: 0.1rem;
  margin: 0 auto;
}
.caseinfo-box3 .caseinfo3swiper .swiper-slide .img img {
  width: 70%;
  height: 70%;
  left: 15%;
  top: 15%;
}
.caseinfo-box3 .caseinfo3swiper .swiper-slide .text {
  text-align: center;
  color: #222222;
  line-height: 1.41666667em;
  margin: 0.6rem 0 0.25rem;
  padding: 0 0.3rem;
}
.caseinfo-box3 .caseinfo3swiper .swiper-slide .text2 {
  text-align: center;
  color: #999999;
  line-height: 1.55555556em;
  padding: 0 0.3rem;
}
.caseinfo-box3 .caseinfo3swiper .swiper-pagination {
  position: relative;
  margin-top: 0.4rem;
  height: 0.1rem;
  background-color: #e6e3e0;
  border-radius: 5px;
  overflow: hidden;
}
.caseinfo-box3 .caseinfo3swiper .swiper-pagination .swiper-pagination-progressbar-fill {
  background-image: linear-gradient(90deg, #f1d5ba 0%, #f08300 100%);
}
.caseinfo-box4 {
  padding-top: 1.75rem;
}
.caseinfo-box4 .swiper-pagination {
  bottom: 0;
}
@media (max-width: 991px) {
  .caseinfo-box4 .swiper-pagination {
    display: block;
  }
}
.caseinfo-box4 .swiper-pagination-bullet-active {
  background-color: #f07c00;
}
.caseinfo-box4 .text1 {
  width: 100%;
}
.caseinfo-box4 .cn1 {
  text-align: center;
  color: #222222;
  line-height: 1.27777778em;
}
.caseinfo-box4 .caseinfobox4 {
  width: 100%;
  position: relative;
  overflow: hidden;
  max-width: 1920px;
  margin: 0 auto;
}
.caseinfo-box4 .caseinfobox4 .container {
  max-width: 100%;
  width: 100%;
}
.caseinfo-box4 .caseinfo4swiper {
  margin: 0.55rem auto 0;
  position: relative;
  padding-bottom: 0.4rem;
  width: 100%;
}
@media (max-width: 991px) {
  .caseinfo-box4 .caseinfo4swiper {
    width: 100%;
    padding-bottom: 0.6rem;
  }
}
.caseinfo-box4 .caseinfo4swiper .swiper-slide {
  transform-origin: top center;
  transform: scale(0.72);
  transition: all 0.5s;
}
.caseinfo-box4 .caseinfo4swiper .swiper-slide.swiper-slide-active {
  transform-origin: center center;
  transform: scale(1);
}
.caseinfo-box4 .caseinfo4swiper .swiper-slide.swiper-slide-active .text0 {
  width: 72%;
  left: 2%;
  transform: translateX(0);
  bottom: 0.2rem;
  background-color: #f07c00;
}
@media (max-width: 991px) {
  .caseinfo-box4 .caseinfo4swiper .swiper-slide.swiper-slide-active .text0 {
    width: 96%;
  }
}
.caseinfo-box4 .caseinfo4swiper .swiper-slide.swiper-slide-active .text0 .text {
  color: #Fff;
  transform: scale(1);
  opacity: 1;
}
.caseinfo-box4 .caseinfo4swiper .swiper-slide.swiper-slide-active .text0 .text2 {
  color: #Fff;
  display: block;
  line-height: 1.5em;
  height: auto;
  white-space: wrap;
}
.caseinfo-box4 .caseinfo4swiper .swiper-slide .img {
  border-radius: 0.1rem;
}
.caseinfo-box4 .caseinfo4swiper .swiper-slide .img::before {
  padding-top: 66.66666667%;
}
.caseinfo-box4 .caseinfo4swiper .swiper-slide .text0 {
  z-index: 3;
  background-color: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1.2rem;
  width: 100%;
  min-height: 1.3rem;
  border-radius: 0.1rem;
  padding: 0.15rem 0.3rem;
  transition: all 0.5s;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.caseinfo-box4 .caseinfo4swiper .swiper-slide .text0 .text {
  position: relative;
  color: #222222;
  transform: scale(1);
}
.caseinfo-box4 .caseinfo4swiper .swiper-slide .text0 .text2 {
  color: #999999;
  line-height: 0.3rem;
  height: 0.3rem;
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
  opacity: 1;
  display: none;
}
@media (max-width: 991px) {
  .caseinfo-box4 .caseinfo4swiper .swiper-slide .text0 .text2 {
    font-size: 0.24rem;
  }
}
.caseinfobigbox {
  width: 100%;
  padding-bottom: 1rem;
  overflow: hidden;
}
.caseinfo-box5 {
  padding-top: 1.35rem;
}
.caseinfo-box5 .cn1 {
  text-align: center;
  color: #222222;
  line-height: 1.27777778em;
}
.caseinfo-box5 .box {
  margin-top: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.caseinfo-box5 .box .left {
  width: 48.25%;
  padding-top: 0.6rem;
  transform: translateX(-0.6rem);
}
@media (max-width: 991px) {
  .caseinfo-box5 .box .left {
    display: none;
  }
}
.caseinfo-box5 .box .left .img {
  width: 100%;
}
.caseinfo-box5 .box .left .img::before {
  padding-top: 63.21243523%;
}
.caseinfo-box5 .box .left .img img {
  opacity: 0;
}
.caseinfo-box5 .box .left .img img.on {
  opacity: 1;
}
.caseinfo-box5 .box .right {
  width: 47.5%;
}
@media (max-width: 991px) {
  .caseinfo-box5 .box .right {
    width: 100%;
  }
}
.caseinfo-box5 .box .right .rightxbox1 {
  display: inline-flex;
  border: 1px solid #e8e8e8;
  border-radius: 0.4rem;
}
.caseinfo-box5 .box .right .rightxbox1 .cn2 {
  padding: 0.06rem 0.25rem;
  color: #999999;
  transition: all 0.5s;
  border-radius: 0.4rem;
}
.caseinfo-box5 .box .right .rightxbox1 .cn2.on {
  background-color: #f07c00;
  color: #Fff;
}
.caseinfo-box5 .box .right .rightbox2 {
  margin-top: 0.25rem;
  width: 100%;
}
.caseinfo-box5 .box .right .rightbox2 .rightbox2a {
  display: none;
}
.caseinfo-box5 .box .right .rightbox2 .rightbox2a.on {
  display: block;
}
.caseinfo-box5 .box .right .rightbox2 .rightbox2a .rightbox2b {
  display: flex;
}
.caseinfo-box5 .box .right .rightbox2 .rightbox2a .rightbox2b .rightbox2c {
  width: 50%;
  padding-right: 0.3rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #e8e8e8;
}
.caseinfo-box5 .box .right .rightbox2 .rightbox2a .rightbox2b .rightbox2c .cn3:nth-child(1) {
  color: #999999;
  line-height: 1.625em;
}
.caseinfo-box5 .box .right .rightbox2 .rightbox2a .rightbox2b .rightbox2c .cn3:nth-child(2) {
  color: #222222;
  line-height: 1.5em;
}
.caseinfo-box6 {
  padding-top: 1.2rem;
}
.caseinfo-box6 .caseinfobox6swiper {
  position: relative;
  overflow: hidden;
}
.caseinfo-box6 .caseinfobox6swiper .swiper-slide {
  position: relative;
}
.caseinfo-box6 .caseinfobox6swiper .swiper-slide .img {
  border-radius: 0.1rem;
}
.caseinfo-box6 .caseinfobox6swiper .swiper-slide .img::before {
  padding-top: 37.5%;
}
@media (max-width: 991px) {
  .caseinfo-box6 .caseinfobox6swiper .swiper-slide .img::before {
    padding-top: 60%;
  }
}
@media (max-width: 767px) {
  .caseinfo-box6 .caseinfobox6swiper .swiper-slide .img::before {
    padding-top: 100%;
  }
}
.caseinfo-box6 .caseinfobox6swiper .swiper-slide .text {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  padding: 0.75rem 0.8rem 0;
  width: 7.9rem;
  max-width: 100%;
}
@media (max-width: 991px) {
  .caseinfo-box6 .caseinfobox6swiper .swiper-slide .text {
    padding: 0.5rem 0.3rem 0;
  }
}
.caseinfo-box6 .caseinfobox6swiper .swiper-slide .text .cn2 {
  color: #Fff;
  line-height: 1.27777778em;
}
.caseinfo-box6 .caseinfobox6swiper .swiper-slide .text .cn3 {
  margin-top: 0.3rem;
  line-height: 1.77777778em;
  color: rgba(255, 255, 255, 0.65);
}
.caseinfo-box6 .caseinfobox6swiper .swiper-slide .text .cn100 {
  margin-top: 0.3rem;
  justify-content: flex-start;
}
.caseinfo-box6 .caseinfobox6swiper .swiper-pagination {
  position: absolute;
  right: 0.8rem;
  left: initial;
  width: 2rem;
  top: 0.8rem;
  z-index: 5;
}
@media (max-width: 991px) {
  .caseinfo-box6 .caseinfobox6swiper .swiper-pagination {
    left: 50%;
    transform: translateX(-50%);
    top: initial;
    bottom: 0.3rem;
    display: flex;
  }
}
.caseinfo-box6 .caseinfobox6swiper .swiper-pagination .swiper-pagination-bullet {
  display: block;
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 2rem;
  height: auto;
  border-radius: 0.05rem;
  border: 2px solid #fff;
  margin: 0 0 0.2rem auto;
  opacity: 1;
  width: 1rem;
  transition: all 0.5s;
}
@media (max-width: 991px) {
  .caseinfo-box6 .caseinfobox6swiper .swiper-pagination .swiper-pagination-bullet {
    width: 8px !important;
    height: 8px;
    margin: 0 0.2rem;
    background-color: #Fff;
    border: 0;
    border-radius: 50%;
    opacity: 0.5;
  }
}
.caseinfo-box6 .caseinfobox6swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 2rem;
}
@media (max-width: 991px) {
  .caseinfo-box6 .caseinfobox6swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
  }
}
.caseinfo-box6 .caseinfobox6swiper .swiper-pagination .swiper-pagination-bullet::before {
  content: "";
  display: block;
  position: relative;
  z-index: 0;
  padding-top: 60%;
}
@media (max-width: 991px) {
  .caseinfo-box6 .caseinfobox6swiper .swiper-pagination .swiper-pagination-bullet::before {
    display: none;
  }
}
.caseinfo-box6 .caseinfobox6swiper .swiper-pagination .swiper-pagination-bullet img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
@media (max-width: 991px) {
  .caseinfo-box6 .caseinfobox6swiper .swiper-pagination .swiper-pagination-bullet img {
    display: none;
  }
}
.caseinfo-box7 {
  padding-top: 1.4rem;
}
.caseinfo-box7 .cn1 {
  text-align: center;
  color: #222222;
  line-height: 1.27777778em;
}
.caseinfo-box7 .caseinfo7swiper {
  margin-top: 0.6rem;
  position: relative;
  overflow: hidden !important;
  padding-bottom: 1.9rem;
}
@media (max-width: 1580px) {
  .caseinfo-box7 .caseinfo7swiper {
    padding-bottom: 2.1rem;
  }
}
@media (max-width: 991px) {
  .caseinfo-box7 .caseinfo7swiper .swiper-pagination {
    display: block;
  }
}
.caseinfo-box7 .caseinfo7swiper .swiper-pagination .swiper-pagination-bullet {
  background-color: #f07c00;
}
@media (max-width: 991px) {
  .caseinfo-box7 .caseinfo7swiper {
    padding-bottom: 1rem;
  }
}
.caseinfo-box7 .caseinfo7swiper .swiper-slide .img {
  border-radius: 0.2rem;
}
.caseinfo-box7 .caseinfo7swiper .swiper-slide .img::before {
  padding-top: 66.66666667%;
}
.caseinfo-box7 .caseinfo7swiper .swiper-slide .text {
  z-index: 3;
  background-color: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  width: 100%;
  border-radius: 0.1rem;
  padding: 0.3rem 0;
  transition: all 0.5s;
}
@media (max-width: 991px) {
  .caseinfo-box7 .caseinfo7swiper .swiper-slide .text {
    padding: 0.6rem 0;
    margin-top: -0.2rem;
    position: relative;
    left: 0;
    top: 0;
    transform: initial !important;
  }
}
.caseinfo-box7 .caseinfo7swiper .swiper-slide .text .cn4 {
  line-height: 0.3rem;
  color: #f07c00;
  border-radius: 0.05rem;
  display: inline-block;
  padding: 0 0.1rem;
  border: 2px solid #f07c00;
  transition: all 0.5s;
}
@media (max-width: 991px) {
  .caseinfo-box7 .caseinfo7swiper .swiper-slide .text .cn4 {
    padding: 0.1rem;
  }
}
.caseinfo-box7 .caseinfo7swiper .swiper-slide .text .cn5 {
  color: #222222;
  line-height: 0.4rem;
  transition: all 0.5s;
}
.caseinfo-box7 .caseinfo7swiper .swiper-slide .text .cn6 {
  position: absolute;
  right: 0.45rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.48rem;
  height: 0.48rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0ece6;
  border-radius: 50%;
  transition: all 0.5s;
  opacity: 0;
}
.caseinfo-box7 .caseinfo7swiper .swiper-slide .text .cn6 svg {
  width: 50%;
  height: auto;
}
.caseinfo-box7 .caseinfo7swiper .swiper-slide .text .cn6 svg path {
  fill: #f07c00;
  opacity: 1;
  stroke: none;
  transition: all 0.5s;
}
.caseinfo-box7 .caseinfo7swiper .swiper-slide:hover .img img {
  transform: scale(1.05);
}
.caseinfo-box7 .caseinfo7swiper .swiper-slide:hover .text {
  background-color: #f07c00;
  transform: translateX(-50%) translateY(-40%);
}
.caseinfo-box7 .caseinfo7swiper .swiper-slide:hover .text .cn4 {
  transform: translateX(0.3rem);
  border: 2px solid #fff;
  color: #fff;
}
.caseinfo-box7 .caseinfo7swiper .swiper-slide:hover .text .cn5 {
  transform: translateX(0.3rem);
  color: #fff;
}
.caseinfo-box7 .caseinfo7swiper .swiper-slide:hover .text .cn6 {
  opacity: 1;
}
.caseinfo-box8 {
  padding-top: 1.4rem;
}
.caseinfo-box8 .container {
  background-color: #f8f7f7;
  padding: 0.6rem;
  display: flex;
  border-radius: 0.1rem;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .caseinfo-box8 .container {
    padding: 0.6rem 0.3rem;
  }
}
.caseinfo-box8 .container .left {
  width: 29%;
}
@media (max-width: 991px) {
  .caseinfo-box8 .container .left {
    width: 100%;
  }
}
.caseinfo-box8 .container .left .cn1 {
  color: #222222;
}
@media (max-width: 991px) {
  .caseinfo-box8 .container .left .cn1 {
    text-align: center;
  }
}
.caseinfo-box8 .container .left .cn2 {
  width: 100%;
  margin-top: 0.3rem;
  overflow: initial;
}
@media (max-width: 991px) {
  .caseinfo-box8 .container .left .cn2 {
    display: none;
  }
}
.caseinfo-box8 .container .left .cn2 img {
  max-width: 150%;
  width: 150%;
  height: 150%;
  transform: translateX(-33%);
}
.caseinfo-box8 .container .left .cn2::before {
  padding-top: 58.76923077%;
}
.caseinfo-box8 .container .right {
  width: 71%;
}
@media (max-width: 991px) {
  .caseinfo-box8 .container .right {
    margin-top: 0.6rem;
    width: 100%;
  }
}
.caseinfo-box8 .container .right .rightxbox1 {
  display: inline-flex;
  border: 1px solid #e8e8e8;
  border-radius: 0.4rem;
}
.caseinfo-box8 .container .right .rightxbox1 .cn3 {
  padding: 0.06rem 0.25rem;
  color: #999999;
  transition: all 0.5s;
  border-radius: 0.4rem;
}
.caseinfo-box8 .container .right .rightxbox1 .cn3.on {
  background-color: #f07c00;
  color: #Fff;
}
.caseinfo-box8 .container .right .rightbox2 {
  margin-top: 0.3rem;
  display: none;
}
.caseinfo-box8 .container .right .rightbox2.on {
  display: block;
}
.caseinfo-box8 .container .right .rightbox2 .cn3 {
  margin-top: 0.2rem;
  display: flex;
  align-items: center;
  padding: 0 0.3rem;
  border: 1px solid #edecec;
  background-color: #edecec;
  transition: all 0.5s;
  border-radius: 0.1rem;
}
@media (max-width: 991px) {
  .caseinfo-box8 .container .right .rightbox2 .cn3 {
    flex-wrap: wrap;
    padding: 0.3rem;
  }
}
.caseinfo-box8 .container .right .rightbox2 .cn3:hover {
  border-color: #f07c00;
  background-color: #f7eee4;
}
@media (max-width: 991px) {
  .caseinfo-box8 .container .right .rightbox2 .cn3:hover {
    border-radius: 0;
    box-shadow: initial;
  }
}
.caseinfo-box8 .container .right .rightbox2 .cn3:hover .cn4 {
  color: #f07c00;
}
.caseinfo-box8 .container .right .rightbox2 .cn3:hover .cn6 {
  color: #f07c00;
}
.caseinfo-box8 .container .right .rightbox2 .cn3:hover .cn6 svg path {
  fill: #f07c00;
}
.caseinfo-box8 .container .right .rightbox2 .cn3 .cn4 {
  width: 100%;
  line-height: 0.8rem;
  padding-right: 0.2rem;
  color: #666666;
}
@media (max-width: 991px) {
  .caseinfo-box8 .container .right .rightbox2 .cn3 .cn4 {
    width: 100%;
    font-size: 0.32rem;
    line-height: 1rem;
    text-overflow: initial;
    overflow: initial;
    white-space: initial;
    line-height: 1.5em;
    word-break: break-all;
  }
}
.caseinfo-box8 .container .right .rightbox2 .cn3 .cn4.cn4a {
  width: 60%;
}
@media (max-width: 991px) {
  .caseinfo-box8 .container .right .rightbox2 .cn3 .cn4.cn4a {
    margin-top: 0.2rem;
    width: 50%;
    font-size: 0.28rem;
  }
}
.caseinfo-box8 .container .right .rightbox2 .cn3 .cn4.cn4b {
  width: 30%;
}
@media (max-width: 991px) {
  .caseinfo-box8 .container .right .rightbox2 .cn3 .cn4.cn4b {
    display: none;
  }
}
.caseinfo-box8 .container .right .rightbox2 .cn3 .cn5 {
  margin-left: 0.55rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: #999999;
  transition: all 0.5s;
}
@media (max-width: 991px) {
  .caseinfo-box8 .container .right .rightbox2 .cn3 .cn5 {
    margin-top: 0.2rem;
    width: 50%;
    justify-content: flex-end;
    margin-left: 0;
  }
}
.caseinfo-box8 .container .right .rightbox2 .cn3 .cn5 svg {
  width: 0.21rem;
  margin-right: 0.08rem;
}
@media (max-width: 991px) {
  .caseinfo-box8 .container .right .rightbox2 .cn3 .cn5 svg {
    width: 0.3rem;
  }
}
.caseinfo-box8 .container .right .rightbox2 .cn3 .cn5 svg path {
  fill: #999;
  opacity: 1;
  stroke: none;
  transition: all 0.5s;
}
.caseinfo-box8 .container .right .rightbox2 .cn3 .cn5:hover {
  color: #f07c00;
}
.caseinfo-box8 .container .right .rightbox2 .cn3 .cn5:hover svg path {
  fill: #f07c00;
}
.caseinfo-box8 .container .right .rightbox2 .cn3 .cn5:hover .yuan {
  border: 1px solid #f07c00;
}
.caseinfo-box8 .container .right .rightbox2 .cn3 .cn5:hover .yuan em {
  background-color: #f07c00;
}
.caseinfo-box8 .container .right .rightbox2 .cn3 .cn5 .yuan {
  width: 18px;
  height: 18px;
  border: 1px solid #333;
  position: relative;
  border-radius: 50%;
  margin-left: 0.08rem;
  transition: all 0.5s;
}
@media (max-width: 1580px) {
  .caseinfo-box8 .container .right .rightbox2 .cn3 .cn5 .yuan {
    width: 16px;
    height: 16px;
  }
}
.caseinfo-box8 .container .right .rightbox2 .cn3 .cn5 .yuan em {
  transition: all 0.5s;
  background-color: #333;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.caseinfo-box8 .container .right .rightbox2 .cn3 .cn5 .yuan em:nth-child(1) {
  width: 10px;
  height: 1px;
}
@media (max-width: 1580px) {
  .caseinfo-box8 .container .right .rightbox2 .cn3 .cn5 .yuan em:nth-child(1) {
    width: 8px;
  }
}
.caseinfo-box8 .container .right .rightbox2 .cn3 .cn5 .yuan em:nth-child(2) {
  width: 1px;
  height: 10px;
}
@media (max-width: 1580px) {
  .caseinfo-box8 .container .right .rightbox2 .cn3 .cn5 .yuan em:nth-child(2) {
    height: 8px;
  }
}
.caseinfo-box8 .container .right .rightbox2 .cn3 .cn5.on {
  color: #f07c00;
}
.caseinfo-box8 .container .right .rightbox2 .cn3 .cn5.on .yuan {
  border: 1px solid #f07c00;
}
.caseinfo-box8 .container .right .rightbox2 .cn3 .cn5.on .yuan em {
  background-color: #f07c00;
}
.caseinfo-box8 .container .right .rightbox2 .cn3 .cn5.on .yuan em:nth-child(2) {
  transform: translate(-50%, -50%) rotate(90deg);
}
.caseinfo-box8 .container .right .rightbox2 .cn3 .cn6 {
  margin-left: 0.55rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: #999999;
  transition: all 0.5s;
}
@media (max-width: 991px) {
  .caseinfo-box8 .container .right .rightbox2 .cn3 .cn6 {
    margin-top: 0.2rem;
    width: 50%;
    justify-content: flex-end;
    margin-left: 0;
  }
}
.caseinfo-box8 .container .right .rightbox2 .cn3 .cn6 svg {
  width: 0.21rem;
  margin-left: 0.08rem;
}
@media (max-width: 991px) {
  .caseinfo-box8 .container .right .rightbox2 .cn3 .cn6 svg {
    width: 0.3rem;
  }
}
.caseinfo-box8 .container .right .rightbox2 .cn3 .cn6 svg path {
  fill: #999;
  opacity: 1;
  stroke: none;
  transition: all 0.5s;
}
.caseinfo-box8 .container .right .rightbox2 .cn3 .cn6:hover {
  color: #f07c00;
}
.caseinfo-box8 .container .right .rightbox2 .cn3 .cn6:hover svg path {
  fill: #f07c00;
}
.caseinfo-box9 {
  background-color: #f07c00;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.caseinfo-box9 .container {
  display: flex;
  position: relative;
}
.caseinfo-box9 .container .bgimg {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}
@media (max-width: 767px) {
  .caseinfo-box9 .container .bgimg {
    display: none;
  }
}
.caseinfo-box9 .container .bgimg img {
  height: 100%;
}
.caseinfo-box9 .container .left {
  padding: 0.45rem 0 0.65rem;
  position: relative;
}
@media (max-width: 991px) {
  .caseinfo-box9 .container .left {
    padding: 0.65rem 0;
  }
}
.caseinfo-box9 .container .left .cn1 {
  color: #Fff;
  line-height: 1.28571429em;
}
@media (max-width: 991px) {
  .caseinfo-box9 .container .left .cn1 {
    font-size: 0.36rem;
  }
}
.caseinfo-box9 .container .left .cn100 {
  margin-top: 0.35rem;
  justify-content: flex-start;
}
.caseinfo-box9 .container .left .cn100 .public-btn0 {
  border: 1px solid #fff;
  background-color: #Fff;
}
@media (max-width: 991px) {
  .caseinfo-box9 .container .left .cn100 .public-btn0 {
    line-height: 0.6rem;
  }
}
.caseinfo-box9 .container .left .cn100 .public-btn0:hover {
  background-color: transparent;
}
.caseinfo-box9 .container .left .cn100 .public-btn0:hover .zpcn1 {
  color: #Fff;
}
.caseinfo-box9 .container .left .cn100 .public-btn0:hover .zpcn2 svg path {
  fill: #Fff;
}
.caseinfo-box9 .container .left .cn100 .public-btn0 .zpcn1 {
  color: #f07c00;
}
.caseinfo-box9 .container .left .cn100 .public-btn0 .zpcn2 svg path {
  fill: #f07c00;
}
.ppbox {
  text-align: center;
}
.ppbox .ppcn1 {
  border: 2px solid #f07c00;
  border-radius: 0.19rem;
  line-height: 0.38rem;
  color: #f07c00;
  display: inline-flex;
  justify-content: center;
  margin: 0 auto;
  padding: 0 0.24rem;
}
@media (max-width: 767px) {
  .ppbox .ppcn1 {
    padding: 0.1rem 0.24rem;
    border-radius: 0.9rem;
  }
}
.ppbox .ppcn2 {
  color: #222222;
  line-height: 1.27777778em;
  margin-top: 0.25rem;
}
.ppbox .ppcn3 {
  margin-top: 0.1rem;
  color: #666666;
  line-height: 1.55555556em;
}
.project-box1 {
  padding-bottom: 0.2rem;
  padding-top: 0.9rem;
}
.project-box1 .projectbox1 {
  position: relative;
  overflow: hidden;
  margin-top: 0.75rem;
}
@media (max-width: 991px) {
  .project-box1 .swiper-wrapper {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media (max-width: 991px) {
  .project-box1 .swiper-slide {
    margin-top: 0.3rem;
    margin-right: 0 !important;
    width: calc(50% - 0.15rem) !important;
  }
}
.project-box1 .swiper-slide .img {
  border-radius: 0.1rem;
}
.project-box1 .swiper-slide .img::before {
  padding-top: 103.8961039%;
}
.project-box1 .swiper-slide .text {
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 100%;
  padding: 0 0.2rem;
  z-index: 2;
  color: #Fff;
  text-align: center;
}
.project-box1 .swiper-slide:hover .img img {
  transform: scale(1.05);
}
.project-box2 {
  padding-top: 1rem;
}
.project-box2 .swiper-pagination {
  display: none;
}
@media (max-width: 991px) {
  .project-box2 .swiper-pagination {
    display: block;
  }
}
.project-box2 .swiper-pagination-bullet-active {
  background-color: #Fff;
}
.project-box2 .box {
  position: relative;
  margin-top: 0.5rem;
}
.project-box2 .box::before {
  padding-top: 37.5%;
}
@media (max-width: 991px) {
  .project-box2 .box::before {
    padding-top: 80%;
  }
}
.project-box2 .box .box2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.project-box2 .box .box2 .tu1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  object-fit: cover;
  transition: all 0.5s;
  opacity: 0;
}
.project-box2 .box .box2 .tu1.on {
  opacity: 1;
}
.project-box2 .box .box2 .yinying {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  object-fit: cover;
}
.project-box2 .box .projectbox2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.project-box2 .box .projectbox2 .swiper-slide {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0.4rem 0.2rem;
  position: relative;
}
@media (max-width: 991px) {
  .project-box2 .box .projectbox2 .swiper-slide {
    align-items: center;
  }
}
.project-box2 .box .projectbox2 .swiper-slide .tu2 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  opacity: 0;
  transition: all 0.5s;
}
@media (max-width: 991px) {
  .project-box2 .box .projectbox2 .swiper-slide .tu2 {
    opacity: 1;
  }
}
.project-box2 .box .projectbox2 .swiper-slide::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.25);
}
.project-box2 .box .projectbox2 .swiper-slide .cn3 {
  position: relative;
  z-index: 5;
  text-align: center;
}
.project-box2 .box .projectbox2 .swiper-slide .cn3 .text {
  color: #Fff;
  line-height: 1.41666667em;
  margin-bottom: 0.2rem;
}
@media (max-width: 991px) {
  .project-box2 .box .projectbox2 .swiper-slide .cn3 .text {
    font-size: 0.4rem;
    font-weight: bold;
  }
}
.project-box2 .box .projectbox2 .swiper-slide .cn3 .text2 {
  line-height: 1.625em;
  color: rgba(255, 255, 255, 0.55);
}
.project-box2 .box .projectbox2 .swiper-slide .cn3 .img {
  display: none;
}
@media (max-width: 991px) {
  .project-box2 .box .projectbox2 .swiper-slide .cn3 .img {
    display: block;
  }
}
.project-box2 .box .projectbox2 .swiper-slide:hover .tu2 {
  opacity: 1;
}
.project-box3 {
  padding-bottom: 1.3rem;
  padding-top: 1.6rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .project-box3 {
    padding: 1.2rem 0;
  }
}
.project-box3 .container .box .box2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  transform: translateX(-2rem);
}
@media (max-width: 767px) {
  .project-box3 .container .box .box2 {
    transform: translateX(0) !important;
  }
}
.project-box3 .container .box .box2:nth-child(even) {
  transform: translateX(2rem);
}
.project-box3 .container .box .box2 .box3 {
  margin-top: 0.8rem;
  width: calc(50% - 0.4rem);
  background-color: #f5f3f0;
  border-radius: 0.1rem;
  transition: all 0.5s;
  padding: 0.7rem 0 0.85rem;
}
@media (max-width: 767px) {
  .project-box3 .container .box .box2 .box3 {
    width: 100%;
    margin-top: 0.3rem;
  }
}
.project-box3 .container .box .box2 .box3 .img {
  background-color: #f5ead4;
  border-radius: 0.1rem;
  width: 1rem;
  margin: 0 auto;
  transition: all 0.5s;
}
.project-box3 .container .box .box2 .box3 .img img {
  width: 60%;
  height: 60%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.project-box3 .container .box .box2 .box3 .img .tu1 {
  opacity: 0;
}
.project-box3 .container .box .box2 .box3 .img .tu2 {
  opacity: 1;
}
.project-box3 .container .box .box2 .box3 .cn1 {
  color: #222;
  text-align: center;
  margin: 0.35rem 0 0;
  padding: 0 0.4rem;
}
.project-box3 .container .box .box2 .box3 .cn2 {
  margin-top: 0.2rem;
  text-align: center;
  color: #666666;
  line-height: 1.33333333em;
  padding: 0 0.4rem;
}
.project-box3 .container .box .box2 .box3:hover {
  background-color: #fdf2e5;
}
.project-box3 .container .box .box2 .box3:hover .img {
  background-color: #f07c00;
}
.project-box3 .container .box .box2 .box3:hover .img .tu1 {
  opacity: 1;
}
.project-box3 .container .box .box2 .box3:hover .img .tu2 {
  opacity: 0;
}
.project-box4 {
  background-color: #f5f3f0;
  padding: 1.15rem 0 1.2rem;
}
@media (max-width: 991px) {
  .project-box4 {
    padding: 1.2rem 0;
  }
}
.project-box4.project-box4a {
  background-color: #Fff;
}
@media (min-width: 992px) {
  .project-box4.project-box4a .public-projuectbox4 .pbox.on {
    background-color: #f8f6f5;
  }
}
.public-projuectbox4 {
  margin-top: 0.55rem;
  display: flex;
}
@media (max-width: 991px) {
  .public-projuectbox4 {
    flex-wrap: wrap;
  }
}
.public-projuectbox4 .pbox {
  padding: 0.5rem 0.5rem 0;
  flex: 1 1 auto;
  transition: all 0.3s linear;
  overflow: hidden;
  width: 100%;
  border: 1px solid #e3e2e1;
  border-left: 0;
  width: 25%;
  position: relative;
}
@media (max-width: 991px) {
  .public-projuectbox4 .pbox {
    margin-top: 0.3rem;
    border: 1px solid #e3e2e1 !important;
    width: 100%;
  }
}
.public-projuectbox4 .pbox:nth-child(1) {
  border-left: 1px solid #e3e2e1;
}
@media (min-width: 992px) {
  .public-projuectbox4 .pbox.on {
    width: 50%;
    background-color: #Fff;
  }
  .public-projuectbox4 .pbox.on .cn1 {
    color: #f07c00;
    width: 80%;
  }
  .public-projuectbox4 .pbox.on .cn3 {
    opacity: 1;
  }
}
.public-projuectbox4 .pbox .cn1 {
  color: #666666;
  transition: all 0.5s;
  line-height: 1.35714286em;
}
@media (max-width: 991px) {
  .public-projuectbox4 .pbox .cn1 {
    font-size: 0.36rem;
  }
}
.public-projuectbox4 .pbox .cn2 {
  margin-top: 0.1rem;
  color: #999999;
  line-height: 1.5em;
  transition: all 0.5s;
  height: 4.5em;
}
.public-projuectbox4 .pbox .cn3 {
  display: flex;
  position: absolute;
  left: 0;
  padding: 0 0.6rem;
  top: 1.64rem;
  z-index: 3;
  width: 100%;
  flex-wrap: wrap;
  opacity: 0;
  transition: all 0.5s;
}
@media (max-width: 1260px) {
  .public-projuectbox4 .pbox .cn3 {
    top: 2rem;
  }
}
@media (max-width: 767px) {
  .public-projuectbox4 .pbox .cn3 {
    top: 2.5rem;
  }
}
@media (max-width: 991px) {
  .public-projuectbox4 .pbox .cn3 {
    opacity: 1;
  }
}
.public-projuectbox4 .pbox .cn3 .cn100 {
  margin-right: 0.2rem;
  margin-top: 0.2rem;
}
.public-projuectbox4 .pbox .cn3 .cn100 .public-btn0 {
  border: 1px solid #f07c00;
  background-color: #Fff;
}
.public-projuectbox4 .pbox .cn3 .cn100 .public-btn0:hover {
  background-color: #f07c00;
}
.public-projuectbox4 .pbox .cn3 .cn100 .public-btn0:hover .zpcn1 {
  color: #Fff;
}
.public-projuectbox4 .pbox .cn3 .cn100 .public-btn0:hover .zpcn2 svg path {
  fill: #Fff;
}
.public-projuectbox4 .pbox .cn3 .cn100 .public-btn0 .zpcn1 {
  color: #f07c00;
}
.public-projuectbox4 .pbox .cn3 .cn100 .public-btn0 .zpcn2 svg path {
  fill: #f07c00;
}
.public-projuectbox4 .pbox .cn4 {
  height: 3.9rem;
  position: relative;
  width: 100%;
  display: block;
}
@media (max-width: 767px) {
  .public-projuectbox4 .pbox .cn4 {
    margin-top: 1rem;
  }
}
.public-projuectbox4 .pbox .cn4 img {
  position: absolute;
  left: -0.5rem;
  width: calc(100% + 1rem);
  max-width: calc(100% + 1rem);
  bottom: 0;
  object-fit: cover;
  height: 100%;
}
.tech-box1 {
  background-color: #f0ede9;
  padding-top: 1rem;
  overflow: hidden;
  padding-bottom: 1.86rem;
}
@media (max-width: 991px) {
  .tech-box1 {
    padding-bottom: 1.2rem;
  }
}
.tech-box1 .container {
  display: flex;
}
.tech-box1 .container .left {
  width: 44.375%;
  padding-left: 1rem;
  position: relative;
}
@media (max-width: 991px) {
  .tech-box1 .container .left {
    padding-left: 0;
    width: 100%;
  }
}
.tech-box1 .container .left .line1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 0.1rem;
  height: 100%;
  background-color: #8b8b8c;
  opacity: 0.1;
  border-radius: 0.05rem;
}
@media (max-width: 991px) {
  .tech-box1 .container .left .line1 {
    opacity: 0;
  }
}
.tech-box1 .container .left .line2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 0.1rem;
  background-color: #f07c00;
  border-radius: 0.05rem;
}
@media (max-width: 991px) {
  .tech-box1 .container .left .line2 {
    opacity: 0;
  }
}
.tech-box1 .container .left .ppbox {
  text-align: left;
  z-index: 10;
  position: relative;
}
.tech-box1 .container .left .ppbox .ppcn3 {
  margin-top: 0.25rem;
  color: #666666;
  line-height: 1.55555556em;
}
.tech-box1 .container .left .box .box2 {
  margin-top: 0.72rem;
  position: relative;
}
.tech-box1 .container .left .box .box2:nth-child(1) {
  z-index: 3;
}
.tech-box1 .container .left .box .box2:nth-child(2) {
  z-index: 2;
}
.tech-box1 .container .left .box .box2:nth-child(3) {
  z-index: 1;
}
.tech-box1 .container .left .box .box2 .bgimg {
  opacity: 0;
  transition: all 0.5s;
  position: absolute;
  left: 130%;
  bottom: -300%;
  width: 130%;
}
@media (max-width: 991px) {
  .tech-box1 .container .left .box .box2 .bgimg {
    left: 50%;
    opacity: 1;
  }
}
.tech-box1 .container .left .box .box2.on .bgimg {
  opacity: 1;
}
.tech-box1 .container .left .box .box2.on .dian1 {
  background-color: #f07c00;
}
.tech-box1 .container .left .box .box2.on .public-btn2 {
  opacity: 1;
}
.tech-box1 .container .left .box .box2.on .public-btn2 .public-btn0 {
  background-color: #f07c00;
}
.tech-box1 .container .left .box .box2.on .public-btn2 .public-btn0 .zpcn1 {
  color: #Fff;
}
.tech-box1 .container .left .box .box2.on:nth-child(2) .public-btn2 .public-btn0 {
  background-color: #8b8b8c;
}
.tech-box1 .container .left .box .box2.on:nth-child(2) .public-btn2 .public-btn0 .zpcn1 {
  color: #Fff;
}
.tech-box1 .container .left .box .box2 .dian1 {
  content: "";
  width: 0.3rem;
  height: 0.3rem;
  background-color: transparent;
  border-radius: 50%;
  position: absolute;
  left: calc(-1rem - 0.1rem);
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s;
}
.tech-box1 .container .left .box .box2 .dian1.on {
  background-color: #f07c00;
}
.tech-box1 .container .left .box .box2 .dian1::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.1rem;
  height: 0.1rem;
  border-radius: 50%;
  background-color: #fff;
}
.tech-box1 .container .left .box .box2 .public-btn2 {
  justify-content: flex-start;
  opacity: 0;
  transition: all 0.5s;
}
@media (max-width: 991px) {
  .tech-box1 .container .left .box .box2 .public-btn2 {
    opacity: 1;
  }
}
.tech-box1 .container .left .box .box2 .public-btn2 .public-btn0 {
  background-color: transparent;
  min-width: 2rem;
  line-height: 0.6rem;
  border-radius: 0.3rem;
  border: 1px solid #f07c00;
  text-align: center;
  justify-content: center;
}
.tech-box1 .container .left .box .box2 .public-btn2 .public-btn0:before {
  display: none;
}
.tech-box1 .container .left .box .box2 .public-btn2 .public-btn0 .zpcn1 {
  color: #f07c00;
}
.tech-box1 .container .left .box .box2:nth-child(2) .public-btn2 .public-btn0 {
  border-color: #8b8b8c;
}
.tech-box1 .container .left .box .box2:nth-child(2) .public-btn2 .public-btn0 .zpcn1 {
  color: #8b8b8c;
}
.tech-box1 .container .left .box3 {
  margin-top: 1.28rem;
  padding: 0.2rem 0.2rem 0.35rem;
  background-color: #fff;
  border-radius: 0.1rem;
  position: relative;
  z-index: 5;
  opacity: 0;
}
.tech-box1 .container .left .box3.on {
  animation: xuanfu11 0.5s 1 linear forwards;
}
.tech-box1 .container .left .box3 .img::before {
  padding-top: 55.35714286%;
}
.tech-box1 .container .left .box3 .text {
  margin-top: 0.25rem;
  color: #666666;
  line-height: 1.55555556em;
}
@keyframes xuanfu11 {
  from {
    transform: translateY(0.3rem);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.tech-box2 {
  position: relative;
  overflow: hidden;
  background-color: #f0ede9;
}
.tech-box2 .tech2swiper {
  margin-top: 0.55rem;
  position: relative;
}
.tech-box2 .tech2swiper .swiper-slide {
  height: auto;
  background-color: #Fff;
  border-radius: 0.1rem;
  padding: 0.7rem 0;
  transition: all 0.5s;
  border: 1px solid #fff;
}
.tech-box2 .tech2swiper .swiper-slide .img {
  background-color: #fef4e8;
  width: 0.8rem;
  border-radius: 0.1rem;
  margin: 0 auto;
  transition: all 0.5s;
}
.tech-box2 .tech2swiper .swiper-slide .img img {
  width: 50%;
  height: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 991px) {
  .tech-box2 .tech2swiper .swiper-slide .img img {
    width: 70%;
    height: 70%;
  }
}
.tech-box2 .tech2swiper .swiper-slide .img .tu1 {
  opacity: 1;
}
.tech-box2 .tech2swiper .swiper-slide .img .tu2 {
  opacity: 0;
}
.tech-box2 .tech2swiper .swiper-slide .text {
  text-align: center;
  color: #222222;
  line-height: 1.41666667em;
  margin: 0.6rem 0 0.25rem;
  padding: 0 0.3rem;
  transition: all 0.5s;
}
@media (max-width: 991px) {
  .tech-box2 .tech2swiper .swiper-slide .text {
    font-size: 0.4rem;
  }
}
.tech-box2 .tech2swiper .swiper-slide .text2 {
  text-align: center;
  color: #999999;
  line-height: 1.55555556em;
  padding: 0 0.3rem;
}
.tech-box2 .tech2swiper .swiper-slide:hover {
  background-color: #f0e8dd;
  border: 1px solid #f07c00;
}
.tech-box2 .tech2swiper .swiper-slide:hover .img {
  background-color: #f07c00;
}
.tech-box2 .tech2swiper .swiper-slide:hover .img .tu1 {
  opacity: 0;
}
.tech-box2 .tech2swiper .swiper-slide:hover .img .tu2 {
  opacity: 1;
}
.tech-box2 .tech2swiper .swiper-slide:hover .text {
  color: #f07c00;
}
.tech-box2 .tech2swiper .swiper-pagination {
  position: relative;
  margin-top: 0.4rem;
  height: 0.1rem;
  background-color: #e6e3e0;
  border-radius: 5px;
  overflow: hidden;
}
.tech-box2 .tech2swiper .swiper-pagination .swiper-pagination-progressbar-fill {
  background-image: linear-gradient(90deg, #f1d5ba 0%, #f08300 100%);
}
.tech-box3 {
  padding-top: 1.58rem;
  padding-bottom: 1.15rem;
  overflow: hidden;
  background-color: #f0ede9;
}
@media (max-width: 991px) {
  .tech-box3 {
    padding: 1.2rem 0;
  }
}
.tech-box3 .box {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}
@media (max-width: 991px) {
  .tech-box3 .box {
    justify-content: space-between;
  }
}
.tech-box3 .box.on .box2 {
  opacity: 1;
  transform: translateX(0) !important;
}
.tech-box3 .box.on .box2:nth-child(2) .box3 {
  background-color: #Fff;
}
.tech-box3 .box.on .box2:nth-child(2) .box3 .box4 .box5 {
  background-color: #f07c00;
}
.tech-box3 .box.on .box2:nth-child(2) .box3 .box4 .box5 .img {
  background-color: #Fff;
}
.tech-box3 .box.on .box2:nth-child(2) .box3 .box4 .box5 .img svg path {
  fill: #f07c00;
}
.tech-box3 .box.on .box2:nth-child(2) .box3 .box4 .box6 .cn2 .cn3 {
  color: #999;
}
.tech-box3 .box.on .box2:nth-child(2) .box3 .box4 .box6 .cn2 .cn4 {
  color: #222;
}
.tech-box3 .box.on .box2:nth-child(2) .box3 .tu1 path {
  fill: #f07c00;
}
.tech-box3 .box .box2 {
  opacity: 0;
  transition: all 0.5s;
  margin-right: 0.8rem;
  width: calc((100% - 2.4rem) / 4);
  order: 1;
}
@media (max-width: 991px) {
  .tech-box3 .box .box2 {
    opacity: 1;
    transform: translateX(0) !important;
    width: calc(50% - 0.15rem);
    margin-top: 0.3rem;
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .tech-box3 .box .box2 {
    width: 100%;
  }
}
.tech-box3 .box .box2:nth-child(4n) {
  margin-right: 0;
}
.tech-box3 .box .box2:nth-child(1) {
  transform: translateX(2rem);
}
.tech-box3 .box .box2:nth-child(2) {
  transform: translateX(1rem);
}
@media (max-width: 991px) {
  .tech-box3 .box .box2:nth-child(2) {
    order: 0;
  }
}
.tech-box3 .box .box2:nth-child(3) {
  transform: translateX(-1rem);
}
.tech-box3 .box .box2:nth-child(4) {
  transform: translateX(-2rem);
}
.tech-box3 .box .box2 .box3 {
  position: relative;
  background-color: #f5f3f1;
  padding: 0.2rem;
  border-radius: 0.1rem;
}
.tech-box3 .box .box2 .box3 .box4 {
  position: relative;
}
.tech-box3 .box .box2 .box3 .box4 .box5 {
  background-color: #a8a6a4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem;
  border-radius: 0.06rem;
  transition: all 0.5s 0.5s;
}
.tech-box3 .box .box2 .box3 .box4 .box5 .img {
  flex-shrink: 0;
  background-color: #f5f3f1;
  border-radius: 50%;
  width: 0.24rem;
  height: 0.24rem;
  display: flex;
  align-items: center;
  transition: all 0.5s 0.5s;
  justify-content: center;
}
@media (max-width: 991px) {
  .tech-box3 .box .box2 .box3 .box4 .box5 .img {
    width: 0.4rem;
    height: 0.4rem;
  }
}
.tech-box3 .box .box2 .box3 .box4 .box5 .img svg {
  width: 0.1rem;
  height: 0.1rem;
}
@media (max-width: 991px) {
  .tech-box3 .box .box2 .box3 .box4 .box5 .img svg {
    width: 0.2rem;
    height: 0.2rem;
  }
}
.tech-box3 .box .box2 .box3 .box4 .box5 .img svg path {
  fill: #a8a6a4;
  opacity: 1;
  stroke: none;
  transition: all 0.5s 0.5s;
}
.tech-box3 .box .box2 .box3 .box4 .box5 .cn1 {
  margin-left: 0.1rem;
  color: #f5f3f1;
  transition: all 0.5s 0.5s;
}
.tech-box3 .box .box2 .box3 .box4 .box6 {
  position: relative;
  padding-bottom: 0.25rem;
}
@media (max-width: 991px) {
  .tech-box3 .box .box2 .box3 .box4 .box6 {
    display: flex;
    flex-wrap: wrap;
  }
}
.tech-box3 .box .box2 .box3 .box4 .box6 .cn2 {
  margin-top: 0.3rem;
  text-align: center;
}
@media (max-width: 991px) {
  .tech-box3 .box .box2 .box3 .box4 .box6 .cn2 {
    width: 50%;
    text-align: left;
    padding: 0 0.2rem;
  }
}
.tech-box3 .box .box2 .box3 .box4 .box6 .cn2 .cn3 {
  display: block;
  line-height: 1.625em;
  color: #d2d0cd;
  transition: all 0.5s 0.5s;
}
.tech-box3 .box .box2 .box3 .box4 .box6 .cn2 .cn4 {
  display: block;
  line-height: 1.55555556em;
  color: #b2b0ad;
  transition: all 0.5s 0.5s;
}
.tech-box3 .box .box2 .box3 .tu1 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.11rem;
  width: 0.22rem;
  height: 0.22rem;
}
.tech-box3 .box .box2 .box3 .tu1 path {
  fill: #a8a6a4;
  opacity: 1;
  stroke: none;
  transition: all 0.5s 0.5s;
}
@media (max-width: 991px) {
  .tech-box3 .box .box2 .box3 .tu1 {
    display: none;
  }
}
.tech-box3 .box .box2 .cn5 {
  text-align: center;
  color: #a8a6a4;
  line-height: 1.625em;
  margin-top: 0.55rem;
}
@media (max-width: 991px) {
  .tech-box3 .box .box2 .cn5 {
    display: none;
  }
}
.tech-box3 .abigbox.on .abox {
  opacity: 1;
  transform: translateX(0) !important;
}
.tech-box3 .abigbox.on .abox:nth-child(1) {
  width: 100%;
}
.tech-box3 .abigbox.on .abox:nth-child(1) .abox5 {
  background-color: #f07c00;
}
.tech-box3 .abigbox.on .abox:nth-child(1) .abox5 .aimg {
  background-color: #Fff;
}
.tech-box3 .abigbox.on .abox:nth-child(1) .abox5 .aimg svg path {
  fill: #f07c00;
}
.tech-box3 .abigbox.on .abox:nth-child(1) .abox6 .acn2 .acn3 {
  color: #999;
}
.tech-box3 .abigbox.on .abox:nth-child(1) .abox6 .acn2 .acn4 {
  color: #222;
}
.tech-box3 .abox {
  width: 92.5%;
  margin: 0.4rem auto 0;
  display: flex;
  flex-wrap: wrap;
  padding: 0.2rem;
  background-color: #f5f3f1;
  border-radius: 0.1rem;
  opacity: 0;
  transition: all 0.5s;
}
@media (max-width: 991px) {
  .tech-box3 .abox {
    width: 100%;
    opacity: 1;
    transform: translateX(0) !important;
  }
}
.tech-box3 .abox:nth-child(1) {
  transform: translateY(1rem);
}
.tech-box3 .abox:nth-child(2) {
  transform: translateY(-1rem);
}
.tech-box3 .abox:nth-child(1) {
  margin: 0 auto;
}
.tech-box3 .abox .abox5 {
  background-color: #a8a6a4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem;
  border-radius: 0.06rem;
  transition: all 0.5s 0.5s;
  width: 16.66666667%;
}
@media (max-width: 991px) {
  .tech-box3 .abox .abox5 {
    width: 100%;
  }
}
.tech-box3 .abox .abox5 .aimg {
  flex-shrink: 0;
  background-color: #f5f3f1;
  border-radius: 50%;
  width: 0.24rem;
  height: 0.24rem;
  display: flex;
  align-items: center;
  transition: all 0.5s 0.5s;
  justify-content: center;
}
@media (max-width: 991px) {
  .tech-box3 .abox .abox5 .aimg {
    width: 0.4rem;
    height: 0.4rem;
  }
}
.tech-box3 .abox .abox5 .aimg svg {
  width: 0.1rem;
  height: 0.1rem;
}
@media (max-width: 991px) {
  .tech-box3 .abox .abox5 .aimg svg {
    width: 0.2rem;
    height: 0.2rem;
  }
}
.tech-box3 .abox .abox5 .aimg svg path {
  fill: #a8a6a4;
  opacity: 1;
  stroke: none;
  transition: all 0.5s 0.5s;
}
.tech-box3 .abox .abox5 .acn1 {
  margin-left: 0.1rem;
  color: #f5f3f1;
  transition: all 0.5s 0.5s;
}
.tech-box3 .abox .abox6 {
  display: flex;
  width: 83.33333333%;
  position: relative;
  flex-wrap: wrap;
  padding: 0.15rem 0;
}
@media (max-width: 991px) {
  .tech-box3 .abox .abox6 {
    width: 100%;
  }
}
.tech-box3 .abox .abox6 .acn2 {
  width: 25%;
  padding: 0 0.5rem;
  margin-top: 0.2rem;
  text-align: left;
}
@media (max-width: 991px) {
  .tech-box3 .abox .abox6 .acn2 {
    width: 50%;
    padding: 0 0.2rem;
  }
}
.tech-box3 .abox .abox6 .acn2:nth-child(-n+4) {
  margin-top: 0;
}
@media (max-width: 991px) {
  .tech-box3 .abox .abox6 .acn2:nth-child(-n+4) {
    margin-top: 0.2rem;
  }
}
@media (max-width: 991px) {
  .tech-box3 .abox .abox6 .acn2:nth-child(-n+2) {
    margin-top: 0;
  }
}
.tech-box3 .abox .abox6 .acn2 .acn3 {
  display: block;
  line-height: 1.625em;
  color: #d2d0cd;
  transition: all 0.5s 0.5s;
}
.tech-box3 .abox .abox6 .acn2 .acn4 {
  display: block;
  line-height: 1.55555556em;
  color: #b2b0ad;
  transition: all 0.5s 0.5s;
}
.ptebiediv {
  max-width: 90%;
  margin: 0.4rem auto;
  display: flex;
  justify-content: center;
}
.ptebiediv .ppcn10 {
  text-align: center;
  line-height: 1.16666667em;
  position: relative;
  overflow: hidden;
}
.ptebiediv .ppcn10 .ppcn14 {
  opacity: 0.3;
  color: #a8a6a4;
  position: relative;
  z-index: 5;
  transform: translateY(0.3rem);
}
.ptebiediv .ppcn10 .ppcn14 span {
  color: #f07c00;
}
.ptebiediv .ppcn10 .ppcn11 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #f0ede9;
  z-index: 6;
}
.ptebiediv .ppcn10 .ppcn13 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  display: block;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(240, 131, 0, 0.5) 100%);
}
.ptebiediv .ppcn10 .ppcn13::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #f07c00;
}
.policy .box1 {
  padding-bottom: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border-bottom: 1px solid #e6e6e6;
  flex-direction: column;
}
.policy .box1 .cn1 {
  width: 100%;
  text-align: center;
  color: #222222;
}
@media (max-width: 767px) {
  .policy .box1 .cn1 {
    width: 100%;
    text-align: center;
  }
}
.policy .box1 .cn2 {
  margin-top: 0.1rem;
  width: 100%;
  text-align: center;
}
@media (max-width: 767px) {
  .policy .box1 .cn2 {
    margin-top: 0.15rem;
    width: 100%;
    justify-content: center;
  }
}
.policy .box1 .cn2 .cn3 {
  color: #999999;
}
@media (max-width: 767px) {
  .policy .box1 .cn2 .cn3 {
    margin: 0 0.1rem;
  }
}
.policy .public-content {
  padding-top: 0.25rem;
  line-height: 1.5em;
}
.policy .public-content h3 {
  font-size: 30px;
  color: #000000;
}
@media (max-width: 1580px) {
  .policy .public-content h3 {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .policy .public-content h3 {
    font-size: 0.36rem;
  }
}
.policy .public-content p {
  color: #666666;
}
.sitemap {
  margin-top: 0.6rem;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}
.sitemap .cn2 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.sitemap .cn2 .cn3 {
  width: 20%;
  padding-right: 0.5rem;
  margin-top: 0.45rem;
}
@media (max-width: 991px) {
  .sitemap .cn2 .cn3 {
    width: 50%;
  }
}
.sitemap .cn2 .cn3 .cn4 {
  line-height: 1.5em;
  color: #000000;
  transition: all 0.5s;
}
.sitemap .cn2 .cn3 .cn4:hover {
  font-weight: normal;
  text-decoration: underline;
}
.sitemap .cn2 .cn3 .cn5 {
  margin-top: 0.2rem;
}
.sitemap .cn2 .cn3 .cn5 .cn6 .cn7 {
  color: #000;
  line-height: 1.66666667em;
  transition: all 0.5s;
}
.sitemap .cn2 .cn3 .cn5 .cn6 .cn7:hover {
  color: #f07c00;
}
.sitemap .cn2 .cn3 .cn9 {
  margin-top: 0.1rem;
  margin-bottom: 0.2rem;
}
.sitemap .cn2 .cn3 .cn9 .cn8 {
  color: #666666;
  line-height: 1.625em;
  transition: all 0.5s;
}
.sitemap .cn2 .cn3 .cn9 .cn8:hover {
  color: #f07c00;
}
/* 404 */
.errorbox {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  position: relative;
  padding-top: 1rem;
}
.errorbox .img {
  z-index: 5;
  position: relative;
  height: 2.4rem;
  max-width: 100%;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .errorbox .img {
    height: 2rem;
  }
}
.errorbox .img img {
  width: auto;
  max-width: initial;
  height: 100%;
}
.errorbox .f_text {
  position: relative;
  color: #000;
  font-weight: bold;
  margin-bottom: 0.28rem;
}
@media (max-width: 991px) {
  .errorbox .f_text {
    font-size: 0.28rem;
  }
}
.errorbox .f_text span {
  color: #0067da;
}
.errorbox .f_text a {
  color: #0067da;
  display: inline-block;
  margin-left: 0.1rem;
}
.errorbox .f_text a:hover {
  text-decoration: underline;
}
.errorbox .public-btn2 {
  justify-content: center;
}
.errorbox .text16 {
  margin-top: 0.55rem;
  text-align: center;
  color: #666666;
}
.errorbox .text16 span {
  color: #f07c00;
}
/* End */
.news-list .searchbox {
  margin-top: 0.75rem;
}
.news-list .searchbox form {
  display: flex;
}
.news-list .searchbox .box1 {
  position: relative;
}
@media (max-width: 991px) {
  .news-list .searchbox .box1 {
    width: 100%;
  }
}
.news-list .searchbox .box1 input {
  width: 7.4rem;
  max-width: 100%;
  line-height: 0.7rem;
  border-radius: 0.35rem;
  background-color: #Fff;
  padding: 0 1.5rem 0 0.7rem;
  color: #222;
}
@media (max-width: 991px) {
  .news-list .searchbox .box1 input {
    width: 100%;
  }
}
.news-list .searchbox .box1 input::placeholder {
  color: #222;
}
.news-list .searchbox .box1 span {
  position: absolute;
  width: 0.7rem;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
}
.news-list .searchbox .box1 span img {
  width: 0.18rem;
  height: 0.19rem;
}
@media (max-width: 991px) {
  .news-list .searchbox .box1 span img {
    width: 0.27rem;
    height: auto;
  }
}
.news-list .searchbox .box1 button {
  position: absolute;
  right: 0;
  top: 0;
  width: 1.34rem;
  height: 100%;
  background-color: #f07c00;
  border-radius: 0.35rem;
  text-align: center;
  color: #fff;
}
.news-list .searchbox2 {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.news-list .searchbox2 .cn1 {
  margin-top: 0.4rem;
  color: #999999;
  line-height: 0.4rem;
  margin-right: 0.15rem;
}
.news-list .searchbox2 .cn2 {
  color: #000000;
  border-radius: 0.03rem;
  line-height: 0.4rem;
  transition: all 0.5s;
  border: 1px solid transparent;
  padding: 0 0.15rem;
  margin: 0.4rem 0.15rem 0;
}
.news-list .searchbox2 .cn2:hover {
  background-color: #f0ddc2;
  border-color: #f07c00;
  color: #f07c00;
}
.news-list .searchbox3 {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 0.9rem;
}
.news-list .searchbox3 .cn1 {
  margin-top: 0.2rem;
  color: #999999;
  line-height: 0.4rem;
}
.news-list .searchbox3 .cn3 {
  line-height: 0.4rem;
  color: #717171;
  margin: 0.2rem 0.2rem 0;
}
.news-list .searchbox3 .cn2 {
  margin-top: 0.2rem;
  color: #000000;
  line-height: 0.4rem;
  transition: all 0.5s;
}
.news-list .searchbox3 .cn2:hover {
  color: #f07c00;
}
.news-list .searchbox3 .cn2.on {
  color: #f07c00;
}
.news-list .searchbox4 .searchbox4a {
  margin-bottom: 1.2rem;
}
.news-list .searchbox4 .searchbox4a:last-child {
  margin-bottom: 0;
  padding-bottom: 0.2rem;
}
.news-list .searchbox4 .searchbox4a .stitle {
  color: #222222;
}
.news-list .searchbox4 .searchbox4a .stitle span {
  color: #222222;
}
.news-list .searchbox4 .searchbox4a .stitle2 {
  text-align: center;
  color: #333;
}
.news-list .searchbox4 .searchbox4a .sbox .case-box1 {
  padding: 0 0 1rem;
}
.news-list .searchbox4 .searchbox4a .sbox .news-list-public .pbox {
  margin-top: 0.55rem;
}
#c-header .ztopxiala {
  width: 8rem;
  border-radius: 0.1rem;
  box-shadow: 0px 0px 54px 6px rgba(7, 10, 10, 0.1);
  padding: 0.3rem !important;
  left: 50%;
  transform: translateX(-50%);
}
#c-header .ztopxiala li .zheadertop {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
}
#c-header .ztopxiala li .zheadertop .zheadertop2 {
  padding-bottom: 0.3rem;
  display: flex;
  overflow: auto;
  width: 100%;
}
#c-header .ztopxiala li .zheadertop .zheadertop2::-webkit-scrollbar {
  height: 5px;
}
#c-header .ztopxiala li .zheadertop .public-btn2 {
  flex-shrink: 0;
  margin-right: 0.2rem;
  min-width: 1.7rem;
}
@media (max-width: 1900px) {
  #c-header .ztopxiala li .zheadertop .public-btn2 {
    margin-right: 0.15rem;
  }
}
@media (max-width: 1580px) {
  #c-header .ztopxiala li .zheadertop .public-btn2 {
    margin-right: 0.1rem;
  }
}
#c-header .ztopxiala li .zheadertop .public-btn2:last-child {
  margin-right: 0;
}
#c-header .ztopxiala li .zheadertop .public-btn2 .public-btn0 {
  border: solid 1px #efede9;
  background-color: transparent;
  border-radius: 0.5rem;
  display: flex;
  padding: 0.03rem 0.17rem 0.03rem 0.32rem;
  color: #efede9;
}
#c-header .ztopxiala li .zheadertop .public-btn2 .public-btn0 .zpcn1 {
  color: #666666;
}
#c-header .ztopxiala li .zheadertop .public-btn2 .public-btn0 .zpcn2 {
  margin-left: 0.24rem;
  width: 0.26rem;
  height: 0.26rem;
  background-color: #efede9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1900px) {
  #c-header .ztopxiala li .zheadertop .public-btn2 .public-btn0 .zpcn2 {
    margin-left: 0.16rem;
  }
}
@media (max-width: 1580px) {
  #c-header .ztopxiala li .zheadertop .public-btn2 .public-btn0 .zpcn2 {
    margin-left: 0.13rem;
  }
}
#c-header .ztopxiala li .zheadertop .public-btn2 .public-btn0 .zpcn2 svg {
  transition: all 0.5s;
}
#c-header .ztopxiala li .zheadertop .public-btn2 .public-btn0 .zpcn2 svg path {
  fill: #666666;
}
#c-header .ztopxiala li .zheadertop .public-btn2 .public-btn0::before {
  display: none;
}
#c-header .ztopxiala li .zheadertop .public-btn2.on .public-btn0 {
  border: 1px solid #f07c00;
  background-color: #f07c00;
}
#c-header .ztopxiala li .zheadertop .public-btn2.on .public-btn0 .zpcn1 {
  color: #Fff;
}
#c-header .ztopxiala li .zheadertop .public-btn2.on .public-btn0 .zpcn2 {
  background-color: #Fff;
}
#c-header .ztopxiala li .zheadertop .public-btn2.on .public-btn0 .zpcn2 svg {
  transform: rotate(90deg);
}
#c-header .ztopxiala li .zheadertop .public-btn2.on .public-btn0 .zpcn2 svg path {
  fill: #f07c00;
}
#c-header .ztopxiala li .zheadertop .public-btn2:hover .public-btn0 {
  border: 1px solid #f07c00;
  background-color: #f07c00;
}
#c-header .ztopxiala li .zheadertop .public-btn2:hover .public-btn0 .zpcn1 {
  color: #Fff;
}
#c-header .ztopxiala li .zheadertop .public-btn2:hover .public-btn0 .zpcn2 {
  background-color: #Fff;
}
#c-header .ztopxiala li .zheadertop .public-btn2:hover .public-btn0 .zpcn2 svg {
  transform: rotate(90deg);
}
#c-header .ztopxiala li .zheadertop .public-btn2:hover .public-btn0 .zpcn2 svg path {
  fill: #f07c00;
}
#c-header .ztopxiala li .zheadertop .wcn7 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f07c00 !important;
  padding: 0;
  flex-shrink: 0;
  margin: 0 0 0.3rem 0.2rem;
}
#c-header .ztopxiala li .zheadertop .wcn7 .wcn8 {
  margin-left: 0.1rem;
  width: 0.26rem;
  height: 0.26rem;
  border-radius: 50%;
  position: relative;
  background-color: #f07c00;
}
#c-header .ztopxiala li .zheadertop .wcn7 .wcn8::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.1rem;
  height: 1px;
  background-color: #Fff;
}
#c-header .ztopxiala li .zheadertop .wcn7 .wcn8::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 0.1rem;
  background-color: #Fff;
}
#c-header .ztopxiala2 {
  width: 10.8rem;
  height: auto;
}
#c-header .zheaderbottom .zheaderbottom2 {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: none;
}
#c-header .zheaderbottom .zheaderbottom2 .zheaderbottom3 {
  display: flex;
  overflow: auto;
  padding-bottom: 0.2rem;
}
#c-header .zheaderbottom .zheaderbottom2 .zheaderbottom3::-webkit-scrollbar {
  height: 5px;
}
#c-header .zheaderbottom .zheaderbottom2.on {
  display: flex;
}
#c-header .zheaderbottom .zheaderbottom2 .wcn1 {
  flex-shrink: 0;
  color: #666666;
  transition: all 0.5s;
  padding: 0.3rem 0 0.1rem;
  margin-right: 0.8rem;
}
#c-header .zheaderbottom .zheaderbottom2 .wcn1:hover {
  color: #f07c00 !important;
}
#c-header .zheaderbottom .zheaderbottom2 .wcn2 {
  margin-top: 0.3rem;
  padding: 0;
  margin-right: 0.3rem;
  width: calc((100% - 0.6rem) / 3);
  flex-shrink: 0;
}
#c-header .zheaderbottom .zheaderbottom2 .wcn2 .wcn3 {
  border-radius: 0.1rem;
}
#c-header .zheaderbottom .zheaderbottom2 .wcn2 .wcn3::before {
  padding-top: 62.5%;
}
#c-header .zheaderbottom .zheaderbottom2 .wcn2 .wcn4 {
  line-height: 1.41666667em;
  color: #222222;
  margin: 0.2rem 0 0.1rem;
  transition: all 0.5s;
}
#c-header .zheaderbottom .zheaderbottom2 .wcn2 .wcn5 {
  color: #666666;
  line-height: 1.5em;
  height: 3em;
}
#c-header .zheaderbottom .zheaderbottom2 .wcn2 .wcn6 {
  display: flex;
  align-items: center;
  color: #f07c00;
  margin-top: 0.2rem;
}
#c-header .zheaderbottom .zheaderbottom2 .wcn2 .wcn6 span {
  transition: all 0.5s;
  margin-left: 0.1rem;
  width: 0.26rem;
  height: 0.26rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #f07c00;
}
#c-header .zheaderbottom .zheaderbottom2 .wcn2 .wcn6 span svg path {
  fill: #Fff;
  opacity: 1;
  stroke: none;
}
#c-header .zheaderbottom .zheaderbottom2 .wcn2:last-child {
  margin-right: 0;
}
#c-header .zheaderbottom .zheaderbottom2 .wcn2:hover .wcn3 img {
  transform: scale(1.05);
}
#c-header .zheaderbottom .zheaderbottom2 .wcn2:hover .wcn4 {
  color: #f07c00;
}
#c-header .zheaderbottom .zheaderbottom2 .wcn2:hover .wcn6 span {
  transform: translateX(0.05rem);
}
#c-header .searchztopxiala {
  position: absolute;
  right: 0;
  left: initial;
  transform: translateX(0);
  top: 100%;
  background-color: #fff;
  width: 6.4rem;
  display: none;
}
@media (max-width: 991px) {
  #c-header .searchztopxiala {
    display: none !important;
  }
}
#c-header .searchztopxiala .searchbox {
  padding-bottom: 0.3rem;
  line-height: 1.5em;
}
#c-header .searchztopxiala .searchbox form {
  display: flex;
}
#c-header .searchztopxiala .searchbox .box1 {
  width: 100%;
  position: relative;
}
@media (max-width: 991px) {
  #c-header .searchztopxiala .searchbox .box1 {
    width: 100%;
  }
}
#c-header .searchztopxiala .searchbox .box1 input {
  border: solid 1px #efede9;
  width: 100%;
  line-height: 0.6rem;
  border-radius: 0.3rem;
  background-color: #fff;
  padding: 0 0.8rem 0 0.36rem;
  color: #666 !important;
}
@media (max-width: 991px) {
  #c-header .searchztopxiala .searchbox .box1 input {
    width: 100%;
  }
}
#c-header .searchztopxiala .searchbox .box1 input::placeholder {
  color: #666 !important;
}
#c-header .searchztopxiala .searchbox .box1 span {
  position: absolute;
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
  background-color: #f07c00;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
}
#c-header .searchztopxiala .searchbox .box1 span img {
  width: 0.18rem;
  height: 0.19rem;
}
@media (max-width: 991px) {
  #c-header .searchztopxiala .searchbox .box1 span img {
    width: 0.27rem;
    height: auto;
  }
}
#c-header .searchztopxiala .searchbox .box1 button {
  position: absolute;
  right: 0.06rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
  background-color: #f07c00;
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
#c-header .searchztopxiala .searchbox .box1 button svg path {
  fill: #Fff;
}
#c-header .searchztopxiala .searchbox2 {
  display: flex;
  flex-wrap: wrap;
  padding-top: 0.2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
#c-header .searchztopxiala .searchbox2 .cn1 {
  margin-top: 0.1rem;
  color: #999999 !important;
  line-height: 0.4rem;
  margin-right: 0.1rem;
}
#c-header .searchztopxiala .searchbox2 .cn2 {
  color: #000000 !important;
  border-radius: 0.03rem;
  line-height: 0.4rem;
  transition: all 0.5s;
  border: 1px solid transparent;
  padding: 0 0.15rem;
  margin: 0.1rem 0.1rem 0;
}
#c-header .searchztopxiala .searchbox2 .cn2:hover {
  background-color: #f0ddc2;
  border-color: #f07c00 !important;
  color: #f07c00 !important;
}
.fanganwindwos {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
}
.fanganwindwos .fanganwindwos2 {
  max-width: 90%;
  min-width: 8.56rem;
  border-radius: 24px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 0.3rem 0.6rem;
}
@media (max-width: 991px) {
  .fanganwindwos .fanganwindwos2 {
    max-height: 80%;
    overflow: auto;
    border-radius: 0;
    min-width: initial;
    max-width: 90%;
    width: 90%;
  }
}
.fanganwindwos .fanganwindwos2 .contact {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  max-height: 80%;
  overflow: auto;
}
.fanganwindwos .fanganwindwos2 .contact .right {
  width: 100%;
}
.fanganwindwos .fanganwindwos2 .contact .right .f_title {
  padding-bottom: 0;
}
.fanganwindwos .fanganwindwos2 .contact .right .zzzcn1 {
  color: #999999;
  line-height: 1.71428571em;
  margin-top: 0.05rem;
}
.fanganwindwos .fanganwindwos2 .contact .right .zzzcn2 {
  margin-top: 0.1rem;
  position: relative;
  width: 100%;
  height: 0.03rem;
  background-color: rgba(0, 0, 0, 0.1);
  margin-bottom: 0.1rem;
}
.fanganwindwos .fanganwindwos2 .contact .right .zzzcn2 span {
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 100%;
  background-color: #f07c00;
}
.fanganwindwos .fanganwindwos2 .contact .right .form .int {
  margin-bottom: 0.15rem;
}
.fanganwindwos .fanganwindwos2 .contact .right .form .int textarea {
  height: 1rem;
}
.fanganwindwos .fanganwindwos2 .contact .right .form .f_text {
  margin-bottom: 0.13rem;
}
.fanganwindwos .fanganwindwos2 .contact .right .int .box label {
  margin-bottom: 0.05rem;
}
.fanganwindwos .fanganwindwos2 .contact .right .int .f_name {
  margin-bottom: 0.09rem;
}
.fanganwindwos .fanganwindwos2 .contact .right .f_textarea {
  margin-bottom: 0;
}
.fanganwindwos .fanganwindwos2 .cnclose {
  width: 0.48rem;
  height: 0.48rem;
  background-color: #Fff;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 0.2rem);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  transition: all 0.4s;
  cursor: pointer;
}
@media (max-width: 991px) {
  .fanganwindwos .fanganwindwos2 .cnclose {
    background-color: #333;
    top: 0.2rem;
    right: 0.2rem;
    left: initial;
    transform: initial;
  }
}
.fanganwindwos .fanganwindwos2 .cnclose svg {
  width: 50%;
  height: auto;
}
.fanganwindwos .fanganwindwos2 .cnclose svg path {
  fill: #333;
  opacity: 1;
  stroke: none;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .fanganwindwos .fanganwindwos2 .cnclose svg path {
    fill: #Fff;
  }
}
.fanganwindwos .fanganwindwos2 .cnclose:hover {
  background-color: #f07c00;
}
.fanganwindwos .fanganwindwos2 .cnclose:hover svg path {
  fill: #Fff;
}
.contact .gt .form .int .box input {
  background-size: 0.11rem 0.09rem;
}
.contact .gt .form .f_text input {
  background-size: 0.11rem 0.09rem;
}
#c-header .c-nav2 li .c-title-box svg path {
  fill: #999;
}
@media (max-width: 991px) {
  #c-header {
    position: fixed !important;
  }
}
.nianxingheader {
  z-index: 500;
  background-color: #f0ede9;
  position: fixed;
  left: 0;
  width: 100%;
  top: -100%;
}
@media (max-width: 991px) {
  .nianxingheader {
    display: none;
  }
}
.nianxingheader .container .public-nav0 {
  margin-top: 0;
  padding: 0.1rem 0 0.4rem;
}
.nianxingheader .container .public-nav0 .line1 {
  transform: translateY(0.22rem);
}
.nianxingheader .container .public-nav0 .line2 {
  transform: translateY(0.22rem);
}
.nianxingheader .container .public-nav0 .line3 {
  transform: translateY(0.22rem);
}
.nianxingheader .container .public-nav0 .xian1 {
  transform: translateY(0.22rem);
}
.nianxingheader .container .public-nav0 .xian2 {
  transform: translateY(0.22rem);
}
.nianxingheader .container .public-nav0 .xian3 {
  transform: translateY(0.22rem);
}
.nianxingheader .container .public-nav0 .xian4 {
  transform: translateY(0.22rem);
}
.nianxingheader .container .public-nav1 .pcn1 {
  line-height: 0.4rem;
}
.nianxingheader.on {
  top: 0;
}
.index-footer .box1 .left {
  padding-bottom: 0.5rem !important;
}
.index-footer .box1 .left .box1t {
  margin-top: 0.8rem;
  padding-right: 0.7rem;
  display: flex;
}
@media (max-width: 991px) {
  .index-footer .box1 .left .box1t {
    display: none;
  }
}
.index-footer .box1 .left .box1t .cnt1 {
  flex-shrink: 0;
  line-height: 0.3rem;
  margin-right: 0.6rem;
  color: rgba(255, 255, 255, 0.3);
}
.index-footer .box1 .left .box1t .cnt2 {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding-right: 0.2rem;
  height: 0.3rem;
  overflow: hidden;
}
.index-footer .box1 .left .box1t .cnt2.on {
  height: auto;
}
.index-footer .box1 .left .box1t .cnt2.on .cnt4 svg {
  transform: rotate(180deg);
}
.index-footer .box1 .left .box1t .cnt2 .cnt3 {
  color: rgba(255, 255, 255, 0.5);
  margin-right: 0.4rem;
  line-height: 0.3rem;
  transition: all 0.5s;
}
.index-footer .box1 .left .box1t .cnt2 .cnt3:hover {
  color: #f07c00;
  text-decoration: underline;
}
.index-footer .box1 .left .box1t .cnt2 .cnt4 {
  position: absolute;
  z-index: 2;
  right: 0;
  cursor: pointer;
  height: 0.3rem;
  display: flex;
  align-items: center;
}
.index-footer .box1 .left .box1t .cnt2 .cnt4 svg {
  transition: all 0.5s;
}
.index-footer .box1 .left .box1t .cnt2 .cnt4 svg path {
  fill: #fff;
  opacity: 0.5;
  transition: all 0.5s;
  stroke: none;
}
.index-footer .box1 .left .box1t .cnt2 .cnt4:hover svg path {
  opacity: 1;
}
#c-header .c-nav > li > .c-title-box {
  height: 1.1rem;
}
#c-header .c-nav > li > .c-title-box a {
  position: relative;
  line-height: 1.5em;
}
#c-header .c-nav > li > .c-title-box a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.03rem;
  width: 0;
  height: 1px;
  display: block;
  background-color: #f07c00;
  transition: all 0.5s;
}
body .layui-laydate .layui-this,
body .layui-laydate .layui-this > div {
  background-color: #f07c00 !important;
}
body .layui-laydate-footer span {
  color: #777 !important;
}
#c-header .c-nav > li:hover > .c-title-box a {
  color: #f07c00 !important;
}
@media (max-width: 991px) {
  .public-nav0.zon {
    display: none;
  }
}
